Change defaults for conversation title generation

This commit is contained in:
Fedor Indutny 2024-02-07 13:38:43 -08:00 committed by GitHub
parent 6a165da589
commit bd922433e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 142 additions and 24 deletions

View file

@ -0,0 +1,69 @@
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { assert } from 'chai';
import type { Database } from '@signalapp/better-sqlite3';
import SQL from '@signalapp/better-sqlite3';
import { updateToVersion, insertData, getTableData } from './helpers';
describe('SQL/updateToSchemaVersion990', () => {
let db: Database;
beforeEach(() => {
db = new SQL(':memory:');
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,
},
},
]);
});
});