mirror of
https://github.com/graphql-hive/console
synced 2026-05-04 14:08:28 +00:00
Co-authored-by: Bartłomiej Czerwiński <82802372+bczerwinski-equinix@users.noreply.github.com>
65 lines
1.8 KiB
TypeScript
65 lines
1.8 KiB
TypeScript
import assert from 'node:assert';
|
|
import { describe, test } from 'node:test';
|
|
import { sql } from 'slonik';
|
|
import { initMigrationTestingEnvironment } from './utils/testkit';
|
|
|
|
await describe('github-check-with-project-name', async () => {
|
|
await test('should use FALSE for existing projects and TRUE for new', async () => {
|
|
const { db, runTo, complete, done, seed } = await initMigrationTestingEnvironment();
|
|
|
|
try {
|
|
// Run migrations all the way to the point before the one we are testing
|
|
await runTo('2023.09.01T09.54.00.zendesk-support.ts');
|
|
|
|
// Seed the DB with orgs
|
|
const user = await seed.user({
|
|
user: {
|
|
name: 'user-1',
|
|
email: 'user-1@test.com',
|
|
},
|
|
});
|
|
const org = await seed.organization({
|
|
user,
|
|
organization: {
|
|
name: 'org-1',
|
|
},
|
|
});
|
|
const oldProject = await seed.project({
|
|
organization: org,
|
|
project: {
|
|
name: 'proj-1',
|
|
type: 'SINGLE',
|
|
},
|
|
});
|
|
|
|
// Run the additional remaining migrations
|
|
await complete();
|
|
|
|
const newProject = await seed.project({
|
|
organization: org,
|
|
project: {
|
|
name: 'proj-2',
|
|
type: 'SINGLE',
|
|
},
|
|
});
|
|
|
|
// Check that the old project has github_check_with_project_name = FALSE
|
|
assert.equal(
|
|
await db.oneFirst(
|
|
sql`SELECT github_check_with_project_name FROM projects WHERE id = ${oldProject.id}`,
|
|
),
|
|
false,
|
|
);
|
|
|
|
// Check that the new project has github_check_with_project_name = TRUE
|
|
assert.equal(
|
|
await db.oneFirst(
|
|
sql`SELECT github_check_with_project_name FROM projects WHERE id = ${newProject.id}`,
|
|
),
|
|
true,
|
|
);
|
|
} finally {
|
|
await done();
|
|
}
|
|
});
|
|
});
|