aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/packages/turbo-workspaces/__tests__/test-utils.ts
blob: 4d6c7c91446eda46f658f36aa2523d79e2ed51da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
import { PackageManager } from "../src/types";

const PACKAGE_MANAGERS: Array<PackageManager> = ["pnpm", "npm", "yarn"];
const REPO_TYPES = ["monorepo", "non-monorepo"];
const BOOLEAN_OPTIONS = [true, false];

export function generateConvertMatrix() {
  const matrix = [];
  for (const fixtureManager of PACKAGE_MANAGERS) {
    for (const fixtureType of REPO_TYPES) {
      for (const toManager of PACKAGE_MANAGERS) {
        for (const interactive of BOOLEAN_OPTIONS) {
          for (const dry of BOOLEAN_OPTIONS) {
            for (const install of BOOLEAN_OPTIONS) {
              matrix.push({
                fixtureManager,
                fixtureType,
                toManager,
                interactive,
                dry,
                install,
              });
            }
          }
        }
      }
    }
  }
  return matrix;
}

export function generateDetectMatrix() {
  const matrix = [];
  for (const project of PACKAGE_MANAGERS) {
    for (const manager of PACKAGE_MANAGERS) {
      for (const type of REPO_TYPES) {
        matrix.push({
          project,
          manager,
          type,
          result: project === manager,
        });
      }
    }
  }
  return matrix;
}

export function generateCreateMatrix() {
  const matrix = [];
  for (const project of PACKAGE_MANAGERS) {
    for (const manager of PACKAGE_MANAGERS) {
      for (const type of REPO_TYPES) {
        for (const interactive of BOOLEAN_OPTIONS) {
          for (const dry of BOOLEAN_OPTIONS) {
            matrix.push({
              project,
              manager,
              type,
              interactive,
              dry,
            });
          }
        }
      }
    }
  }
  return matrix;
}

export function generateReadMatrix() {
  const matrix = [];
  for (const fixtureManager of PACKAGE_MANAGERS) {
    for (const fixtureType of REPO_TYPES) {
      for (const toManager of PACKAGE_MANAGERS) {
        matrix.push({
          fixtureManager,
          fixtureType,
          toManager,
          shouldThrow: fixtureManager !== toManager,
        });
      }
    }
  }

  return matrix;
}

export function generateRemoveMatrix() {
  const matrix = [];
  for (const fixtureManager of PACKAGE_MANAGERS) {
    for (const fixtureType of REPO_TYPES) {
      for (const toManager of PACKAGE_MANAGERS) {
        for (const withNodeModules of BOOLEAN_OPTIONS) {
          for (const interactive of BOOLEAN_OPTIONS) {
            for (const dry of BOOLEAN_OPTIONS) {
              matrix.push({
                fixtureManager,
                fixtureType,
                withNodeModules,
                toManager,
                interactive,
                dry,
              });
            }
          }
        }
      }
    }
  }
  return matrix;
}

export function generateCleanMatrix() {
  const matrix = [];
  for (const fixtureManager of PACKAGE_MANAGERS) {
    for (const fixtureType of REPO_TYPES) {
      for (const interactive of BOOLEAN_OPTIONS) {
        for (const dry of BOOLEAN_OPTIONS) {
          matrix.push({
            fixtureManager,
            fixtureType,
            interactive,
            dry,
          });
        }
      }
    }
  }
  return matrix;
}

export function generateConvertLockMatrix() {
  const matrix = [];
  for (const fixtureManager of PACKAGE_MANAGERS) {
    for (const fixtureType of REPO_TYPES) {
      for (const toManager of PACKAGE_MANAGERS) {
        for (const interactive of BOOLEAN_OPTIONS) {
          for (const dry of BOOLEAN_OPTIONS) {
            matrix.push({
              fixtureManager,
              fixtureType,
              toManager,
              interactive,
              dry,
            });
          }
        }
      }
    }
  }
  return matrix;
}