-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathbroken_project.spec.ts
More file actions
190 lines (155 loc) · 5.21 KB
/
broken_project.spec.ts
File metadata and controls
190 lines (155 loc) · 5.21 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
import { test } from '@playwright/test'
import fs from 'fs-extra'
import os from 'os'
import path from 'path'
import { openLineageView, startVSCode, SUSHI_SOURCE_PATH } from './utils'
test('bad project, double model', async ({}) => {
const tempDir = await fs.mkdtemp(
path.join(os.tmpdir(), 'vscode-test-tcloud-'),
)
await fs.copy(SUSHI_SOURCE_PATH, tempDir)
// Read the customers.sql file
const customersSql = await fs.readFile(
path.join(tempDir, 'models', 'customers.sql'),
'utf8',
)
// Write the customers.sql file with a double model
await fs.writeFile(
path.join(tempDir, 'models', 'customers_duplicated.sql'),
customersSql,
)
const { window, close } = await startVSCode(tempDir)
try {
await window.waitForSelector('text=models')
await window
.getByRole('treeitem', { name: 'models', exact: true })
.locator('a')
.click()
await window
.getByRole('treeitem', { name: 'customers.sql', exact: true })
.locator('a')
.click()
await window.waitForSelector('text=Error creating context')
await window.waitForTimeout(1000)
} finally {
await close()
await fs.remove(tempDir)
}
})
test('working project, then broken through adding double model, then refixed', async ({}) => {
const tempDir = await fs.mkdtemp(
path.join(os.tmpdir(), 'vscode-test-tcloud-'),
)
await fs.copy(SUSHI_SOURCE_PATH, tempDir)
const { window, close } = await startVSCode(tempDir)
try {
// First, verify the project is working correctly
await window.waitForSelector('text=models')
// Open the lineage view to confirm it loads properly
await openLineageView(window)
await window.waitForSelector('text=Loaded SQLMesh context')
// Read the customers.sql file
const customersSql = await fs.readFile(
path.join(tempDir, 'models', 'customers.sql'),
'utf8',
)
// Add a duplicate model to break the project
await fs.writeFile(
path.join(tempDir, 'models', 'customers_duplicated.sql'),
customersSql,
)
// Open the customers model to trigger the error
await window
.getByRole('treeitem', { name: 'models', exact: true })
.locator('a')
.click()
await window
.getByRole('treeitem', { name: 'customers.sql', exact: true })
.locator('a')
.click()
// Save to refresh the context
await window.keyboard.press('Control+S')
await window.keyboard.press('Meta+S')
// Wait for the error to appear
// TODO: Selector doesn't work in the linage view
// await window.waitForSelector('text=Error')
// Remove the duplicated model to fix the project
await fs.remove(path.join(tempDir, 'models', 'customers_duplicated.sql'))
// Save again to refresh the context
await window.keyboard.press('Control+S')
await window.keyboard.press('Meta+S')
// Wait for the error to go away and context to reload
// TODO: Selector doesn't work in the linage view
// await window.waitForSelector('text=raw.demographics')
} finally {
await close()
await fs.remove(tempDir)
}
})
test('bad project, double model, then fixed', async ({}) => {
const tempDir = await fs.mkdtemp(
path.join(os.tmpdir(), 'vscode-test-tcloud-'),
)
await fs.copy(SUSHI_SOURCE_PATH, tempDir)
// Read the customers.sql file
const customersSql = await fs.readFile(
path.join(tempDir, 'models', 'customers.sql'),
'utf8',
)
// Write the customers.sql file with a double model
await fs.writeFile(
path.join(tempDir, 'models', 'customers_duplicated.sql'),
customersSql,
)
const { window, close } = await startVSCode(tempDir)
try {
await window.waitForSelector('text=models')
await window
.getByRole('treeitem', { name: 'models', exact: true })
.locator('a')
.click()
await window
.getByRole('treeitem', { name: 'customers.sql', exact: true })
.locator('a')
.click()
await window.waitForSelector('text=Error creating context')
// Remove the duplicated model
await fs.remove(path.join(tempDir, 'models', 'customers_duplicated.sql'))
// Open the linage view
await openLineageView(window)
// Wait for the error to go away
// TODO: Selector doesn't work in the linage view
// await window.waitForSelector('text=raw.demographics')
} finally {
await close()
await fs.remove(tempDir)
}
})
test('bad project, double model, check lineage', async ({}) => {
const tempDir = await fs.mkdtemp(
path.join(os.tmpdir(), 'vscode-test-tcloud-'),
)
await fs.copy(SUSHI_SOURCE_PATH, tempDir)
// Read the customers.sql file
const customersSql = await fs.readFile(
path.join(tempDir, 'models', 'customers.sql'),
'utf8',
)
// Write the customers.sql file with a double model
await fs.writeFile(
path.join(tempDir, 'models', 'customers_duplicated.sql'),
customersSql,
)
const { window, close } = await startVSCode(tempDir)
try {
await window.waitForSelector('text=models')
// Open the lineage view
await openLineageView(window)
await window.waitForSelector('text=Error creating context')
await window.waitForSelector('text=Error:')
await window.waitForTimeout(1000)
} finally {
await close()
await fs.remove(tempDir)
}
})