@bsv/wallet-toolbox
Version:
BRC100 conforming wallet, wallet storage and wallet signer components
341 lines (292 loc) • 10.8 kB
text/typescript
import { EntityUser } from '../EntityUser'
import { createSyncMap, sdk, SyncMap, TableUser } from '../../../../../src'
import { TestUtilsWalletStorage as _tu, TestWalletNoSetup } from '../../../../../test/utils/TestUtilsWalletStorage'
describe('User class method tests', () => {
jest.setTimeout(99999999) // Extend timeout for database operations
const env = _tu.getEnv('test') // Test environment
const ctxs: TestWalletNoSetup[] = [] // Context for primary databases
const ctxs2: TestWalletNoSetup[] = [] // Context for secondary databases
beforeAll(async () => {
// Set up MySQL and SQLite databases for testing
if (env.runMySQL) {
ctxs.push(await _tu.createLegacyWalletMySQLCopy('userTests_db1'))
ctxs2.push(await _tu.createLegacyWalletMySQLCopy('userTests_db2'))
}
ctxs.push(await _tu.createLegacyWalletSQLiteCopy('userTests_db1'))
ctxs2.push(await _tu.createLegacyWalletSQLiteCopy('userTests_db2'))
})
afterAll(async () => {
// Clean up primary databases
for (const ctx of ctxs) {
await ctx.storage.destroy()
}
// Clean up secondary databases
for (const ctx of ctxs2) {
await ctx.storage.destroy()
}
})
// Test: Default constructor behavior
test('1_creates_user_with_default_values', () => {
const user = new EntityUser()
// Default values
expect(user.userId).toBe(0)
expect(user.identityKey).toBe('')
expect(user.created_at).toBeInstanceOf(Date)
expect(user.updated_at).toBeInstanceOf(Date)
expect(user.created_at <= user.updated_at).toBe(true)
})
// Test: Constructor with provided API object
test('2_creates_user_with_provided_api_object', () => {
const now = new Date()
const apiObject: TableUser = {
userId: 42,
created_at: now,
updated_at: now,
identityKey: 'testIdentityKey',
activeStorage: ''
}
const user = new EntityUser(apiObject)
// Verify all properties match the API object
expect(user.userId).toBe(42)
expect(user.identityKey).toBe('testIdentityKey')
expect(user.created_at).toBe(now)
expect(user.updated_at).toBe(now)
})
// Test: Getters and setters behavior
test('3_getters_and_setters_work_correctly', () => {
const user = new EntityUser()
// Test setting values
const now = new Date()
user.userId = 1001
user.identityKey = 'newIdentityKey'
user.created_at = now
user.updated_at = now
user.activeStorage = 'testActiveStorage' // Setting activeStorage
// Verify getters return the updated values
expect(user.userId).toBe(1001)
expect(user.identityKey).toBe('newIdentityKey')
expect(user.created_at).toBe(now)
expect(user.updated_at).toBe(now)
expect(user.activeStorage).toBe('testActiveStorage') // Getting activeStorage
})
// Test: equals method matching entities
test('5_equals_identifies_matching_entities', async () => {
for (const ctx1 of ctxs) {
for (const ctx2 of ctxs2) {
// Insert the first user into the first database
const user1 = new EntityUser({
userId: 2,
identityKey: 'key1',
created_at: new Date('2023-01-01'),
updated_at: new Date('2023-01-02'),
activeStorage: ''
})
await ctx1.activeStorage.insertUser(user1.toApi())
// Insert a matching user into the second database
const user2 = new EntityUser({
userId: 3, // Different ID
identityKey: 'key1', // Same key
created_at: new Date('2023-01-01'),
updated_at: new Date('2023-01-02'),
activeStorage: ''
})
await ctx2.activeStorage.insertUser(user2.toApi())
const syncMap = createSyncMap()
// Verify the entities match across databases
expect(user1.equals(user2.toApi(), syncMap)).toBe(true) // Should match
}
}
})
// Test: equals method non-matching entities
test('6_equals_identifies_non_matching_entities', async () => {
for (const ctx1 of ctxs) {
for (const ctx2 of ctxs2) {
// Insert the first user into the first database
const user1 = new EntityUser({
userId: 4,
identityKey: 'key2',
created_at: new Date('2023-01-01'),
updated_at: new Date('2023-01-02'),
activeStorage: ''
})
await ctx1.activeStorage.insertUser(user1.toApi())
// Insert a user with a different key into the second database
const user2 = new EntityUser({
userId: 5, // Different ID
identityKey: 'key3', // Different key
created_at: new Date('2023-01-01'),
updated_at: new Date('2023-01-02'),
activeStorage: ''
})
await ctx2.activeStorage.insertUser(user2.toApi())
const syncMap = createSyncMap()
// Verify the entities do not match across databases
expect(user1.equals(user2.toApi(), syncMap)).toBe(false) // Should not match
}
}
})
// Test: Handles edge cases in the constructor
test('7_handles_edge_cases_in_constructor', () => {
const now = new Date()
const pastDate = new Date(now.getTime() - 1000000)
// Provide incomplete API object
const partialApiObject: Partial<TableUser> = {
userId: 123,
created_at: pastDate
}
const user = new EntityUser(partialApiObject as TableUser)
// Default values should fill in missing fields
expect(user.userId).toBe(123)
expect(user.identityKey).toBeUndefined() // Default undefined
expect(user.created_at).toBe(pastDate)
expect(user.updated_at).toBeUndefined() // Default undefined
})
// Test: Handles large input values
test('8_handles_large_input_values', () => {
const now = new Date()
const largeUserId = Number.MAX_SAFE_INTEGER
const longIdentityKey = 'x'.repeat(1000)
const apiObject: TableUser = {
userId: largeUserId,
created_at: now,
updated_at: now,
identityKey: longIdentityKey,
activeStorage: ''
}
const user = new EntityUser(apiObject)
expect(user.userId).toBe(largeUserId)
expect(user.identityKey).toBe(longIdentityKey)
})
// Test: Handles empty API object
test('10_handles_empty_api_object', () => {
const emptyApiObject: TableUser = {} as TableUser
const user = new EntityUser(emptyApiObject)
// Default values should be applied but constructor does not set default values for empty object
expect(user.userId).toBeUndefined()
expect(user.identityKey).toBeUndefined()
expect(user.created_at).toBeUndefined()
expect(user.updated_at).toBeUndefined()
})
// Test: `id` getter and setter
test('11_id_getter_and_setter_work_correctly', () => {
const user = new EntityUser()
user.id = 123 // Test setter
expect(user.id).toBe(123) // Test getter
})
// Test: `entityName` getter
test('12_entityName_returns_User', () => {
const user = new EntityUser()
expect(user.entityName).toBe('user')
})
// Test: `entityTable` getter
test('13_entityTable_returns_users', () => {
const user = new EntityUser()
expect(user.entityTable).toBe('users')
})
// Test: `mergeExisting` updates user when `ei.updated_at` is newer
test('14_mergeExisting_updates_user_when_ei_updated_at_is_newer', async () => {
const user = new EntityUser({
userId: 1,
created_at: new Date('2023-01-01'),
updated_at: new Date('2023-01-01'),
identityKey: 'oldKey',
activeStorage: 'oldStorage'
})
const updatedEi: TableUser = {
userId: 1,
created_at: new Date('2023-01-01'),
updated_at: new Date('2023-02-01'), // Newer `updated_at`
identityKey: 'oldKey',
activeStorage: 'newStorage'
}
const result = await user.mergeExisting(
{
updateUser: async (id: number, data: TableUser) => {
expect(id).toBe(1)
expect(data.activeStorage).toBe('newStorage')
expect(data.updated_at).toBeInstanceOf(Date)
}
} as any,
undefined,
updatedEi,
undefined
)
expect(result).toBe(true)
expect(user.activeStorage).toBe('newStorage') // Updated `activeStorage`
})
// Test: `mergeExisting` does not update user when `ei.updated_at` is older
test('15_mergeExisting_does_not_update_user_when_ei_updated_at_is_older', async () => {
const user = new EntityUser({
userId: 1,
created_at: new Date('2023-01-01'),
updated_at: new Date('2023-02-01'),
identityKey: 'oldKey',
activeStorage: 'oldStorage'
})
const olderEi: TableUser = {
userId: 1,
created_at: new Date('2023-01-01'),
updated_at: new Date('2023-01-01'), // Older `updated_at`
identityKey: 'oldKey',
activeStorage: 'newStorage'
}
const result = await user.mergeExisting(
{
updateUser: async () => {
throw new Error('This should not be called')
}
} as any,
undefined,
olderEi,
undefined
)
expect(result).toBe(false)
expect(user.activeStorage).toBe('oldStorage')
})
// Test: `mergeExisting` updates user and uses `trx` when provided
test('16_mergeExisting_updates_user_with_trx', async () => {
const user = new EntityUser({
userId: 1,
created_at: new Date('2023-01-01'),
updated_at: new Date('2023-01-01'),
identityKey: 'oldKey',
activeStorage: 'oldStorage'
})
const updatedEi: TableUser = {
userId: 1,
created_at: new Date('2023-01-01'),
updated_at: new Date('2023-02-01'), // Newer `updated_at`
identityKey: 'oldKey',
activeStorage: 'newStorage'
}
const mockTrx = {}
const result = await user.mergeExisting(
{
updateUser: async (id: number, data: TableUser, trx: any) => {
expect(id).toBe(1)
expect(data.activeStorage).toBe('newStorage')
expect(data.updated_at).toBeInstanceOf(Date)
expect(trx).toBe(mockTrx)
}
} as any,
undefined,
updatedEi,
undefined,
mockTrx
)
expect(result).toBe(true)
expect(user.activeStorage).toBe('newStorage')
})
// Test: `mergeNew` always throws an error
test('17_mergeNew_always_throws_error', async () => {
const user = new EntityUser()
const storage = {} // Placeholder for `storage`, not used in this case.
const userId = 123 // Example userId
const syncMap = {} // Placeholder for `syncMap`, not used in this case.
const trx = undefined // Optional transaction token, set as undefined.
// The method should throw an error when called
await expect(user.mergeNew(storage as any, userId, syncMap as any, trx)).rejects.toThrowError(
'a sync chunk merge must never create a new user'
)
})
})