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
154
155
156
157
158
159
160
161
162
|
package context
import (
"os"
"path/filepath"
"regexp"
"testing"
testifyAssert "github.com/stretchr/testify/assert"
"github.com/vercel/turbo/cli/internal/fs"
"github.com/vercel/turbo/cli/internal/turbopath"
)
func Test_isWorkspaceReference(t *testing.T) {
rootpath, err := filepath.Abs(filepath.FromSlash("/some/repo"))
if err != nil {
t.Fatalf("failed to create absolute root path %v", err)
}
pkgDir, err := filepath.Abs(filepath.FromSlash("/some/repo/packages/libA"))
if err != nil {
t.Fatalf("failed to create absolute pkgDir %v", err)
}
tests := []struct {
name string
packageVersion string
dependencyVersion string
want bool
}{
{
name: "handles exact match",
packageVersion: "1.2.3",
dependencyVersion: "1.2.3",
want: true,
},
{
name: "handles semver range satisfied",
packageVersion: "1.2.3",
dependencyVersion: "^1.0.0",
want: true,
},
{
name: "handles semver range not-satisfied",
packageVersion: "2.3.4",
dependencyVersion: "^1.0.0",
want: false,
},
{
name: "handles workspace protocol with version",
packageVersion: "1.2.3",
dependencyVersion: "workspace:1.2.3",
want: true,
},
{
name: "handles workspace protocol with relative path",
packageVersion: "1.2.3",
dependencyVersion: "workspace:../other-package/",
want: true,
},
{
name: "handles npm protocol with satisfied semver range",
packageVersion: "1.2.3",
dependencyVersion: "npm:^1.2.3",
want: true, // default in yarn is to use the workspace version unless `enableTransparentWorkspaces: true`. This isn't currently being checked.
},
{
name: "handles npm protocol with non-satisfied semver range",
packageVersion: "2.3.4",
dependencyVersion: "npm:^1.2.3",
want: false,
},
{
name: "handles pre-release versions",
packageVersion: "1.2.3",
dependencyVersion: "1.2.2-alpha-1234abcd.0",
want: false,
},
{
name: "handles non-semver package version",
packageVersion: "sometag",
dependencyVersion: "1.2.3",
want: true, // for backwards compatability with the code before versions were verified
},
{
name: "handles non-semver package version",
packageVersion: "1.2.3",
dependencyVersion: "sometag",
want: true, // for backwards compatability with the code before versions were verified
},
{
name: "handles file:... inside repo",
packageVersion: "1.2.3",
dependencyVersion: "file:../libB",
want: true, // this is a sibling package
},
{
name: "handles file:... outside repo",
packageVersion: "1.2.3",
dependencyVersion: "file:../../../otherproject",
want: false, // this is not within the repo root
},
{
name: "handles link:... inside repo",
packageVersion: "1.2.3",
dependencyVersion: "link:../libB",
want: true, // this is a sibling package
},
{
name: "handles link:... outside repo",
packageVersion: "1.2.3",
dependencyVersion: "link:../../../otherproject",
want: false, // this is not within the repo root
},
{
name: "handles development versions",
packageVersion: "0.0.0-development",
dependencyVersion: "*",
want: true, // "*" should always match
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := isWorkspaceReference(tt.packageVersion, tt.dependencyVersion, pkgDir, rootpath)
if got != tt.want {
t.Errorf("isWorkspaceReference(%v, %v, %v, %v) got = %v, want %v", tt.packageVersion, tt.dependencyVersion, pkgDir, rootpath, got, tt.want)
}
})
}
}
func TestBuildPackageGraph_DuplicateNames(t *testing.T) {
path := getTestDir(t, "dupe-workspace-names")
pkgJSON := &fs.PackageJSON{
Name: "dupe-workspace-names",
PackageManager: "pnpm@7.15.0",
}
_, actualErr := BuildPackageGraph(path, pkgJSON)
// Not asserting the full error message, because it includes a path with slashes and backslashes
// getting the regex incantation to check that is not worth it.
// We have to use regex because the actual error may be different depending on which workspace was
// added first and which one was second, causing the error.
testifyAssert.Regexp(t, regexp.MustCompile("^Failed to add workspace \"same-name\".+$"), actualErr)
}
// This is duplicated from fs.turbo_json_test.go.
// I wasn't able to pull it into a helper file/package because
// it requires the `fs` package and it would cause cyclical dependencies
// when used in turbo_json_test.go and would require more changes to fix that.
func getTestDir(t *testing.T, testName string) turbopath.AbsoluteSystemPath {
defaultCwd, err := os.Getwd()
if err != nil {
t.Errorf("failed to get cwd: %v", err)
}
cwd, err := fs.CheckedToAbsoluteSystemPath(defaultCwd)
if err != nil {
t.Fatalf("cwd is not an absolute directory %v: %v", defaultCwd, err)
}
return cwd.UntypedJoin("testdata", testName)
}
|