Rename files

This commit is contained in:
Fedor Indutny
2025-10-16 17:33:01 -07:00
parent 3387cf6a77
commit 44076ece79
2411 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,73 @@
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { assert } from 'chai';
import type { WritableDB } from '../../sql/Interface.std.js';
import {
createDB,
updateToVersion,
insertData,
getTableData,
} from './helpers.node.js';
describe('SQL/updateToSchemaVersion990', () => {
let db: WritableDB;
beforeEach(() => {
db = createDB();
updateToVersion(db, 980);
});
afterEach(() => {
db.close();
});
it('should migrate conversations', () => {
insertData(db, 'conversations', [
{
id: 'no-prop',
json: {
keep: 'this',
},
},
{
id: 'false-prop',
json: {
keep: 'this',
notSharingPhoneNumber: false,
},
},
{
id: 'true-prop',
json: {
keep: 'this',
notSharingPhoneNumber: true,
},
},
]);
updateToVersion(db, 990);
assert.deepStrictEqual(getTableData(db, 'conversations'), [
{
id: 'no-prop',
json: {
keep: 'this',
},
},
{
id: 'false-prop',
json: {
keep: 'this',
sharingPhoneNumber: true,
},
},
{
id: 'true-prop',
json: {
keep: 'this',
sharingPhoneNumber: false,
},
},
]);
});
});