-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathlineage.spec.ts
More file actions
217 lines (195 loc) · 6.07 KB
/
lineage.spec.ts
File metadata and controls
217 lines (195 loc) · 6.07 KB
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import { test, expect, Page } from '@playwright/test'
import path from 'path'
import fs from 'fs-extra'
import os from 'os'
import { openLineageView, startVSCode, SUSHI_SOURCE_PATH } from './utils'
import { writeFileSync } from 'fs'
/**
* Helper function to launch VS Code and test lineage with given project path config
*/
async function testLineageWithProjectPath(window: Page): Promise<void> {
await openLineageView(window)
// Wait for "Loaded SQLMesh context" text to appear
const loadedContextText = window.locator('text=Loaded SQLMesh context')
await expect(loadedContextText.first()).toBeVisible({ timeout: 10_000 })
}
test('Lineage panel renders correctly - no project path config (default)', async () => {
const tempDir = await fs.mkdtemp(path.join(os.tmpdir(), 'vscode-test-sushi-'))
await fs.copy(SUSHI_SOURCE_PATH, tempDir)
try {
const { window, close } = await startVSCode(tempDir)
await testLineageWithProjectPath(window)
await close()
} finally {
await fs.remove(tempDir)
}
})
test('Lineage panel renders correctly - relative project path', async () => {
const workspaceDir = await fs.mkdtemp(
path.join(os.tmpdir(), 'vscode-test-workspace-'),
)
const projectDir = path.join(workspaceDir, 'projects', 'sushi')
await fs.copy(SUSHI_SOURCE_PATH, projectDir)
const settings = {
'sqlmesh.projectPath': './projects/sushi',
}
await fs.ensureDir(path.join(workspaceDir, '.vscode'))
await fs.writeJson(
path.join(workspaceDir, '.vscode', 'settings.json'),
settings,
{ spaces: 2 },
)
try {
const { window, close } = await startVSCode(workspaceDir)
await testLineageWithProjectPath(window)
await close()
} finally {
await fs.remove(workspaceDir)
}
})
test('Lineage panel renders correctly - absolute project path', async () => {
const workspaceDir = await fs.mkdtemp(
path.join(os.tmpdir(), 'vscode-test-workspace-'),
)
const projectDir = path.join(workspaceDir, 'projects', 'sushi')
await fs.ensureDir(path.join(workspaceDir, '.vscode'))
await fs.copy(SUSHI_SOURCE_PATH, projectDir)
await fs.ensureDir(path.join(workspaceDir, '.vscode'))
const settings = {
'sqlmesh.projectPath': projectDir,
}
await fs.writeJson(
path.join(workspaceDir, '.vscode', 'settings.json'),
settings,
{ spaces: 2 },
)
try {
const { window, close } = await startVSCode(workspaceDir)
await testLineageWithProjectPath(window)
await close()
} finally {
await fs.remove(workspaceDir)
}
})
test('Lineage panel renders correctly - relative project outside of workspace', async () => {
const tempFolder = await fs.mkdtemp(
path.join(os.tmpdir(), 'vscode-test-workspace-'),
)
const projectDir = path.join(tempFolder, 'projects', 'sushi')
await fs.copy(SUSHI_SOURCE_PATH, projectDir)
const workspaceDir = path.join(tempFolder, 'workspace')
await fs.ensureDir(workspaceDir)
const settings = {
'sqlmesh.projectPath': './../projects/sushi',
}
await fs.ensureDir(path.join(workspaceDir, '.vscode'))
await fs.writeJson(
path.join(workspaceDir, '.vscode', 'settings.json'),
settings,
{ spaces: 2 },
)
try {
const { window, close } = await startVSCode(workspaceDir)
await testLineageWithProjectPath(window)
await close()
} finally {
await fs.remove(tempFolder)
}
})
test('Lineage panel renders correctly - absolute path project outside of workspace', async () => {
const tempFolder = await fs.mkdtemp(
path.join(os.tmpdir(), 'vscode-test-workspace-'),
)
const projectDir = path.join(tempFolder, 'projects', 'sushi')
await fs.copy(SUSHI_SOURCE_PATH, projectDir)
const workspaceDir = path.join(tempFolder, 'workspace')
await fs.ensureDir(workspaceDir)
const settings = {
'sqlmesh.projectPath': projectDir,
}
await fs.ensureDir(path.join(workspaceDir, '.vscode'))
await fs.writeJson(
path.join(workspaceDir, '.vscode', 'settings.json'),
settings,
{ spaces: 2 },
)
try {
const { window, close } = await startVSCode(workspaceDir)
await testLineageWithProjectPath(window)
await close()
} finally {
await fs.remove(tempFolder)
}
})
test('Lineage panel renders correctly - multiworkspace setup', async () => {
const workspaceDir = await fs.mkdtemp(
path.join(os.tmpdir(), 'vscode-test-workspace-'),
)
const projectDir1 = path.join(workspaceDir, 'projects', 'sushi1')
const projectDir2 = path.join(workspaceDir, 'projects', 'sushi2')
await fs.copy(SUSHI_SOURCE_PATH, projectDir1)
await fs.ensureDir(projectDir2)
// Add a .code-workspace file with multiple projects
const workspaceFilePath = path.join(
workspaceDir,
'multi-workspace.code-workspace',
)
writeFileSync(
workspaceFilePath,
JSON.stringify({
folders: [
{
name: 'sushi1',
path: 'projects/sushi1',
},
{
name: 'sushi2',
path: 'projects/sushi2',
},
],
}),
)
try {
const { window, close } = await startVSCode(workspaceFilePath)
await testLineageWithProjectPath(window)
await close()
} finally {
await fs.remove(workspaceDir)
}
})
test('Lineage panel renders correctly - multiworkspace setup reversed', async () => {
const workspaceDir = await fs.mkdtemp(
path.join(os.tmpdir(), 'vscode-test-workspace-'),
)
const projectDir1 = path.join(workspaceDir, 'projects', 'sushi1')
const projectDir2 = path.join(workspaceDir, 'projects', 'sushi2')
await fs.copy(SUSHI_SOURCE_PATH, projectDir2)
await fs.ensureDir(projectDir1)
// Add a .code-workspace file with multiple projects
const workspaceFilePath = path.join(
workspaceDir,
'multi-workspace.code-workspace',
)
writeFileSync(
workspaceFilePath,
JSON.stringify({
folders: [
{
name: 'sushi1',
path: 'projects/sushi1',
},
{
name: 'sushi2',
path: 'projects/sushi2',
},
],
}),
)
try {
const { window, close } = await startVSCode(workspaceFilePath)
await testLineageWithProjectPath(window)
await close()
} finally {
await fs.remove(workspaceDir)
}
})