-
Notifications
You must be signed in to change notification settings - Fork 5k
/
Copy pathdatabase.test.ts
865 lines (846 loc) · 31.1 KB
/
database.test.ts
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
import { expect } from 'vitest';
import { DatabaseAdapter } from '../src/database';
import type {
Agent,
ChannelType,
Component,
Entity,
Log,
Memory,
Participant,
Relationship,
Room,
Task,
UUID,
World,
} from '../src/types';
/**
* MockDatabaseAdapter class extends DatabaseAdapter class and provides mock implementations for various database operations.
* @extends {DatabaseAdapter}
*/
/**
* MockDatabaseAdapter class extends DatabaseAdapter class and provides mock implementations for various database operations.
* @extends {DatabaseAdapter}
*/
/**
* Mock Database Adapter class that extends DatabaseAdapter.
*
* @class
*
* @method init
* @returns {Promise<void>} Promise that resolves with void
* @description Initializes the database adapter
*
* @method close
* @returns {Promise<void>} Promise that resolves with void
* @description Closes the database adapter
*
* @method getEntitiesForRoom
* @param {UUID} roomId - The UUID of the room
* @param {boolean} [includeComponents] - Optional parameter to include components
* @returns {Promise<Entity[]>} Promise that resolves with an array of entities
* @description Gets entities for a specific room
*/
class MockDatabaseAdapter extends DatabaseAdapter {
init(): Promise<void> {
throw new Error('Method not implemented.');
}
close(): Promise<void> {
throw new Error('Method not implemented.');
}
getEntitiesForRoom(roomId: UUID, includeComponents?: boolean): Promise<Entity[]> {
throw new Error('Method not implemented.');
}
updateEntity(entity: Entity): Promise<void> {
throw new Error('Method not implemented.');
}
getComponent(
entityId: UUID,
type: string,
worldId?: UUID,
sourceEntityId?: UUID
): Promise<Component | null> {
throw new Error('Method not implemented.');
}
getComponents(entityId: UUID, worldId?: UUID, sourceEntityId?: UUID): Promise<Component[]> {
throw new Error('Method not implemented.');
}
createComponent(component: Component): Promise<boolean> {
throw new Error('Method not implemented.');
}
updateComponent(component: Component): Promise<void> {
throw new Error('Method not implemented.');
}
deleteComponent(componentId: UUID): Promise<void> {
throw new Error('Method not implemented.');
}
getLogs(params: {
entityId: UUID;
roomId?: UUID;
type?: string;
count?: number;
offset?: number;
}): Promise<Log[]> {
throw new Error('Method not implemented.');
}
deleteLog(logId: UUID): Promise<void> {
throw new Error('Method not implemented.');
}
getWorld(id: UUID): Promise<World | null> {
throw new Error('Method not implemented.');
}
getAllWorlds(): Promise<World[]> {
throw new Error('Method not implemented.');
}
createWorld(world: World): Promise<UUID> {
throw new Error('Method not implemented.');
}
updateWorld(world: World): Promise<void> {
throw new Error('Method not implemented.');
}
removeWorld(id: UUID): Promise<void> {
throw new Error('Method not implemented.');
}
getRooms(worldId: UUID): Promise<Room[]> {
throw new Error('Method not implemented.');
}
updateRoom(room: Room): Promise<void> {
throw new Error('Method not implemented.');
}
deleteRoom(roomId: UUID): Promise<void> {
throw new Error('Method not implemented.');
}
getParticipantsForEntity(entityId: UUID): Promise<Participant[]> {
throw new Error('Method not implemented.');
}
updateRelationship(params: {
sourceEntityId: UUID;
targetEntityId: UUID;
tags?: string[];
metadata?: Record<string, unknown>;
}): Promise<void> {
throw new Error('Method not implemented.');
}
getAgent(agentId: UUID): Promise<Agent | null> {
throw new Error('Method not implemented.');
}
getAgents(): Promise<Agent[]> {
throw new Error('Method not implemented.');
}
createAgent(agent: Partial<Agent>): Promise<boolean> {
throw new Error('Method not implemented.');
}
updateAgent(agentId: UUID, agent: Partial<Agent>): Promise<boolean> {
throw new Error('Method not implemented.');
}
deleteAgent(agentId: UUID): Promise<boolean> {
throw new Error('Method not implemented.');
}
ensureAgentExists(agent: Partial<Agent>): Promise<void> {
throw new Error('Method not implemented.');
}
ensureEmbeddingDimension(dimension: number): Promise<void> {
throw new Error('Method not implemented.');
}
getCache<T>(key: string): Promise<T | undefined> {
throw new Error('Method not implemented.');
}
setCache<T>(key: string, value: T): Promise<boolean> {
throw new Error('Method not implemented.');
}
deleteCache(key: string): Promise<boolean> {
throw new Error('Method not implemented.');
}
createTask(task: Task): Promise<UUID> {
throw new Error('Method not implemented.');
}
getTasks(params: { roomId?: UUID; tags?: string[] }): Promise<Task[]> {
throw new Error('Method not implemented.');
}
getTask(id: UUID): Promise<Task | null> {
throw new Error('Method not implemented.');
}
getTasksByName(name: string): Promise<Task[]> {
throw new Error('Method not implemented.');
}
updateTask(id: UUID, task: Partial<Task>): Promise<void> {
throw new Error('Method not implemented.');
}
deleteTask(id: UUID): Promise<void> {
throw new Error('Method not implemented.');
}
/**
* Asynchronous function to retrieve a Memory object by its unique ID.
*
* @param {UUID} _id - The unique identifier of the Memory object to retrieve.
* @returns {Promise<Memory | null>} - A Promise that resolves to the retrieved Memory object, or null if not found.
* @throws {Error} - If the method is not implemented.
*/
getMemoryById(_id: UUID): Promise<Memory | null> {
throw new Error('Method not implemented.');
}
/**
* Retrieve memories by their IDs.
*
* @param {UUID[]} memoryIds - An array of memory IDs to fetch.
* @param {string} [_tableName] - Optional table name parameter.
* @returns {Promise<Memory[]>} - A Promise that resolves to an array of Memory objects.
*/
async getMemoriesByIds(memoryIds: UUID[], _tableName?: string): Promise<Memory[]> {
return memoryIds.map((id) => ({
id: id,
content: { text: 'Test Memory' },
roomId: 'room-id' as UUID,
entityId: 'user-id' as UUID,
})) as Memory[];
}
/**
* Logs an event for a specific user in a specific room.
*
* @param {object} _params - The parameters for the log function.
* @param {object} _params.body - The data object containing the event details.
* @param {string} _params.entityId - The unique identifier of the user performing the event.
* @param {string} _params.roomId - The unique identifier of the room where the event occurred.
* @param {string} _params.type - The type of event being logged.
* @returns {Promise<void>}
*/
log(_params: {
body: { [key: string]: unknown };
entityId: UUID;
roomId: UUID;
type: string;
}): Promise<void> {
throw new Error('Method not implemented.');
}
/**
* Retrieve details of entities in a specific room.
*
* @param {Object} _params - The parameters for the method.
* @param {UUID} _params.roomId - The UUID of the room to retrieve actor details from.
* @returns {Promise<Entity[]>} - A promise that resolves to an array of Entity objects representing the details of entities in the specified room.
* @throws {Error} - If the method is not implemented.
*/
getEntityDetails(_params: { roomId: UUID }): Promise<Entity[]> {
throw new Error('Method not implemented.');
}
/**
* Creates a new memory in the specified table.
* @param _memory The memory object to be created.
* @param _tableName The name of the table where the memory should be created.
* @param _unique... (truncated)
class MockDatabaseAdapter extends DatabaseAdapter {
/**
* Initializes the function.
*
* @returns A Promise that resolves when the function is initialized.
* @throws {Error} If the method is not implemented.
*/
init(): Promise<void> {
throw new Error('Method not implemented.');
}
close(): Promise<void> {
throw new Error('Method not implemented.');
}
getEntitiesForRoom(roomId: UUID, includeComponents?: boolean): Promise<Entity[]> {
throw new Error('Method not implemented.');
}
updateEntity(entity: Entity): Promise<void> {
throw new Error('Method not implemented.');
}
getComponent(
entityId: UUID,
type: string,
worldId?: UUID,
sourceEntityId?: UUID
): Promise<Component | null> {
throw new Error('Method not implemented.');
}
getComponents(entityId: UUID, worldId?: UUID, sourceEntityId?: UUID): Promise<Component[]> {
throw new Error('Method not implemented.');
}
createComponent(component: Component): Promise<boolean> {
throw new Error('Method not implemented.');
}
updateComponent(component: Component): Promise<void> {
throw new Error('Method not implemented.');
}
deleteComponent(componentId: UUID): Promise<void> {
throw new Error('Method not implemented.');
}
getLogs(params: {
entityId: UUID;
roomId?: UUID;
type?: string;
count?: number;
offset?: number;
}): Promise<Log[]> {
throw new Error('Method not implemented.');
}
deleteLog(logId: UUID): Promise<void> {
throw new Error('Method not implemented.');
}
getWorld(id: UUID): Promise<World | null> {
throw new Error('Method not implemented.');
}
getAllWorlds(): Promise<World[]> {
throw new Error('Method not implemented.');
}
createWorld(world: World): Promise<UUID> {
throw new Error('Method not implemented.');
}
updateWorld(world: World): Promise<void> {
throw new Error('Method not implemented.');
}
removeWorld(id: UUID): Promise<void> {
throw new Error('Method not implemented.');
}
getRooms(worldId: UUID): Promise<Room[]> {
throw new Error('Method not implemented.');
}
updateRoom(room: Room): Promise<void> {
throw new Error('Method not implemented.');
}
deleteRoom(roomId: UUID): Promise<void> {
throw new Error('Method not implemented.');
}
getParticipantsForEntity(entityId: UUID): Promise<Participant[]> {
throw new Error('Method not implemented.');
}
updateRelationship(params: {
sourceEntityId: UUID;
targetEntityId: UUID;
tags?: string[];
metadata?: Record<string, unknown>;
}): Promise<void> {
throw new Error('Method not implemented.');
}
getAgent(agentId: UUID): Promise<Agent | null> {
throw new Error('Method not implemented.');
}
getAgents(): Promise<Agent[]> {
throw new Error('Method not implemented.');
}
createAgent(agent: Partial<Agent>): Promise<boolean> {
throw new Error('Method not implemented.');
}
updateAgent(agentId: UUID, agent: Partial<Agent>): Promise<boolean> {
throw new Error('Method not implemented.');
}
deleteAgent(agentId: UUID): Promise<boolean> {
throw new Error('Method not implemented.');
}
ensureAgentExists(agent: Partial<Agent>): Promise<void> {
throw new Error('Method not implemented.');
}
ensureEmbeddingDimension(dimension: number): Promise<void> {
throw new Error('Method not implemented.');
}
getCache<T>(key: string): Promise<T | undefined> {
throw new Error('Method not implemented.');
}
setCache<T>(key: string, value: T): Promise<boolean> {
throw new Error('Method not implemented.');
}
deleteCache(key: string): Promise<boolean> {
throw new Error('Method not implemented.');
}
createTask(task: Task): Promise<UUID> {
throw new Error('Method not implemented.');
}
getTasks(params: { roomId?: UUID; tags?: string[] }): Promise<Task[]> {
throw new Error('Method not implemented.');
}
getTask(id: UUID): Promise<Task | null> {
throw new Error('Method not implemented.');
}
getTasksByName(name: string): Promise<Task[]> {
throw new Error('Method not implemented.');
}
updateTask(id: UUID, task: Partial<Task>): Promise<void> {
throw new Error('Method not implemented.');
}
deleteTask(id: UUID): Promise<void> {
throw new Error('Method not implemented.');
}
/**
* Asynchronous function to retrieve a Memory object by its unique ID.
*
* @param {UUID} _id - The unique identifier of the Memory object to retrieve.
* @returns {Promise<Memory | null>} - A Promise that resolves to the retrieved Memory object, or null if not found.
* @throws {Error} - If the method is not implemented.
*/
getMemoryById(_id: UUID): Promise<Memory | null> {
throw new Error('Method not implemented.');
}
/**
* Retrieve memories by their IDs.
*
* @param {UUID[]} memoryIds - An array of memory IDs to fetch.
* @param {string} [_tableName] - Optional table name parameter.
* @returns {Promise<Memory[]>} - A Promise that resolves to an array of Memory objects.
*/
async getMemoriesByIds(memoryIds: UUID[], _tableName?: string): Promise<Memory[]> {
return memoryIds.map((id) => ({
id: id,
content: { text: 'Test Memory' },
roomId: 'room-id' as UUID,
entityId: 'user-id' as UUID,
})) as Memory[];
}
/**
* Logs an event for a specific user in a specific room.
*
* @param {object} _params - The parameters for the log function.
* @param {object} _params.body - The data object containing the event details.
* @param {string} _params.entityId - The unique identifier of the user performing the event.
* @param {string} _params.roomId - The unique identifier of the room where the event occurred.
* @param {string} _params.type - The type of event being logged.
* @returns {Promise<void>}
*/
log(_params: {
body: { [key: string]: unknown };
entityId: UUID;
roomId: UUID;
type: string;
}): Promise<void> {
throw new Error('Method not implemented.');
}
/**
* Retrieve details of entities in a specific room.
*
* @param {Object} _params - The parameters for the method.
* @param {UUID} _params.roomId - The UUID of the room to retrieve actor details from.
* @returns {Promise<Entity[]>} - A promise that resolves to an array of Entity objects representing the details of entities in the specified room.
* @throws {Error} - If the method is not implemented.
*/
getEntityDetails(_params: { roomId: UUID }): Promise<Entity[]> {
throw new Error('Method not implemented.');
}
/**
* Creates a new memory in the specified table.
* @param _memory The memory object to be created.
* @param _tableName The name of the table where the memory should be created.
* @param _unique Optional parameter to specify if the memory should be unique within the table.
* @returns A Promise that resolves when the memory is successfully created.
*/
createMemory(_memory: Memory, _tableName: string, _unique?: boolean): Promise<UUID> {
throw new Error('Method not implemented.');
}
/**
* Removes a memory from a specific table.
*
* @param {UUID} _memoryId - The ID of the memory to be removed.
* @returns {Promise<void>} A promise that resolves when the memory is successfully removed.
*/
deleteMemory(_memoryId: UUID): Promise<void> {
throw new Error('Method not implemented.');
}
/**
* Remove all memories associated with a specific room and table.
*
* @param {UUID} _roomId - The unique identifier of the room.
* @param {string} _tableName - The name of the table containing the memories.
* @returns {Promise<void>} A promise that resolves when all memories are successfully removed.
*/
deleteAllMemories(_roomId: UUID, _tableName: string): Promise<void> {
throw new Error('Method not implemented.');
}
/**
* Count the number of memories for a specific room.
*
* @param {UUID} _roomId - The ID of the room to count memories for.
* @param {boolean} [_unique] - Flag to indicate if only unique memories should be counted.
* @param {string} [_tableName] - The name of the table to count memories from.
* @return {Promise<number>} - A Promise that resolves to the number of memories.
*/
countMemories(_roomId: UUID, _unique?: boolean, _tableName?: string): Promise<number> {
throw new Error('Method not implemented.');
}
/**
* Retrieve the room data for a specific room and agent.
*
* @param {_roomId} UUID - The unique identifier of the room.
* @param {_agentId} UUID - The unique identifier of the agent.
* @returns {Promise<Room | null>} - The room data if found, otherwise null.
*/
getRoom(_roomId: UUID): Promise<Room | null> {
throw new Error('Method not implemented.');
}
/**
* Creates a room with the given parameters.
*
* @param {Object} _params - The parameters for creating the room.
* @param {UUID} _params.id - The ID of the room.
* @param {UUID} _params.agentId - The ID of the agent associated with the room.
* @param {string} _params.source - The source of the room.
* @param {ChannelType} _params.type - The type of channel.
* @param {string} [_params.channelId] - Optional channel ID.
* @param {string} [_params.serverId] - Optional server ID.
* @param {UUID} [_params.worldId] - Optional world ID.
* @returns {Promise<UUID>} - A promise that resolves with the ID of the created room.
*/
createRoom(_params: {
id: UUID;
agentId: UUID;
source: string;
type: ChannelType;
channelId?: string;
serverId?: string;
worldId?: UUID;
}): Promise<UUID> {
throw new Error('Method not implemented.');
}
/**
* Removes a room with the given ID.
*
* @param {_roomId: UUID} _roomId - The ID of the room to remove.
* @returns {Promise<void>} - A promise that resolves when the room is successfully removed.
*/
removeRoom(_roomId: UUID): Promise<void> {
throw new Error('Method not implemented.');
}
/**
* Retrieve a list of room IDs for a given participant.
* @param {UUID} _entityId - The ID of the participant
* @returns {Promise<UUID[]>} - A promise that resolves with an array of room IDs
*/
getRoomsForParticipant(_entityId: UUID): Promise<UUID[]> {
throw new Error('Method not implemented.');
}
/**
* Retrieves the rooms for the specified participants.
*
* @param {UUID[]} _entityIds - An array of UUIDs representing the participants whose rooms need to be retrieved.
* @returns {Promise<UUID[]>} - A promise that resolves to an array of UUIDs representing the rooms for the specified participants.
* @throws {Error} - If the method is not implemented.
*/
getRoomsForParticipants(_entityIds: UUID[]): Promise<UUID[]> {
throw new Error('Method not implemented.');
}
/**
* Add a participant to a room.
*
* @param {UUID} _entityId - The ID of the user to add to the room.
* @param {UUID} _roomId - The ID of the room to add the user to.
* @returns {Promise<boolean>} - A promise that resolves to true if the user was successfully added to the room, otherwise false.
*/
addParticipant(_entityId: UUID, _roomId: UUID): Promise<boolean> {
throw new Error('Method not implemented.');
}
/**
* Remove a participant from a room.
*
* @param {_entityId} UUID - The ID of the user to remove from the room.
* @param {_roomId} UUID - The ID of the room from which to remove the participant.
* @returns {Promise<boolean>} A promise that resolves to true if the participant was successfully removed, otherwise false.
*/
removeParticipant(_entityId: UUID, _roomId: UUID): Promise<boolean> {
throw new Error('Method not implemented.');
}
/**
* Retrieve a list of participants associated with the specified account user ID.
*
* @param {UUID} entityId - The unique identifier of the account user.
* @returns {Promise<Participant[]>} - A promise that resolves to an array of Participant objects.
*/
getParticipantsForAccount(entityId: UUID): Promise<Participant[]>;
/**
* Retrieves the participants associated with a specific user account.
*
* @param {unknown} _entityId - The ID of the user account to retrieve participants for.
* @returns {Promise<import("../src/types.ts").Participant[]>} A Promise that resolves to an array of participants.
*/
getParticipantsForAccount(_entityId: unknown): Promise<import('../src/types.ts').Participant[]> {
throw new Error('Method not implemented.');
}
/**
* Get the list of participants for a specific room.
*
* @param {_roomId} UUID - The UUID of the room for which participants need to be retrieved.
* @returns {Promise<UUID[]>} - A Promise that resolves to an array of UUIDs representing the participants of the room.
* @throws {Error} - If the method is not implemented.
*/
getParticipantsForRoom(_roomId: UUID): Promise<UUID[]> {
throw new Error('Method not implemented.');
}
/**
* Get the state of a participant user in a specific room.
* @param {UUID} _roomId - The ID of the room.
* @param {UUID} _entityId - The ID of the user.
* @returns {Promise<"FOLLOWED" | "MUTED" | null>} The state of the participant user (FOLLOWED, MUTED, or null).
*/
getParticipantUserState(_roomId: UUID, _entityId: UUID): Promise<'FOLLOWED' | 'MUTED' | null> {
throw new Error('Method not implemented.');
}
/**
* Set the state of a participant in a room.
*
* @param {UUID} _roomId - The unique identifier of the room.
* @param {UUID} _entityId - The unique identifier of the user.
* @param {UUID} _agentId - The unique identifier of the agent.
* @param {"FOLLOWED" | "MUTED" | null} _state - The state to set for the participant (FOLLOWED, MUTED, or null).
* @returns {Promise<void>} - A promise that resolves when the state is set.
*/
setParticipantUserState(
_roomId: UUID,
_entityId: UUID,
_state: 'FOLLOWED' | 'MUTED' | null
): Promise<void> {
throw new Error('Method not implemented.');
}
/**
* Creates a relationship between two users.
*
* @param {Object} _params - The parameters for creating the relationship.
* @param {UUID} _params.sourceEntityId - The UUID of the first user.
* @param {UUID} _params.targetEntityId - The UUID of the second user.
* @returns {Promise<boolean>} - A promise that resolves to true if the relationship was successfully created.
*/
createRelationship(_params: { sourceEntityId: UUID; targetEntityId: UUID }): Promise<boolean> {
throw new Error('Method not implemented.');
}
/**
* Retrieves the relationship between two users.
* @param {object} _params The parameters for which relationship to get.
* @param {UUID} _params.sourceEntityId The UUID of the first user.
* @param {UUID} _params.targetEntityId The UUID of the second user.
* @returns {Promise<Relationship | null>} A Promise that resolves with the relationship between the two users, or null if no relationship exists.
*/
getRelationship(_params: {
sourceEntityId: UUID;
targetEntityId: UUID;
}): Promise<Relationship | null> {
throw new Error('Method not implemented.');
}
/**
* Retrieves relationships for a specific user based on the provided user ID.
* @param {Object} _params - The parameters object containing the user ID.
* @param {string} _params.entityId - The unique identifier for the user to retrieve relationships for.
* @returns {Promise<Relationship[]>} - A promise that resolves to an array of Relationship objects.
*/
getRelationships(_params: { entityId: UUID }): Promise<Relationship[]> {
throw new Error('Method not implemented.');
}
db: Record<string, unknown> = {};
// Mock method for getting memories by room IDs
/**
*
* Retrieves memories based on given roomIds and optional agentId.
*
* @param {Object} params - The parameters for fetching memories.
* @param {string[]} params.roomIds - An array of roomIds to filter memories by.
* @param {string} [params.agentId] - An optional agentId to further filter memories by.
* @param {string} params.tableName - The name of the table storing memories.
* @returns {Promise<Memory[]>} - The Promise that resolves to an array of Memory objects.
*/
async getMemoriesByRoomIds(params: {
roomIds: `${string}-${string}-${string}-${string}-${string}`[];
agentId?: `${string}-${string}-${string}-${string}-${string}`;
tableName: string;
}): Promise<Memory[]> {
return [
{
id: 'memory-id' as UUID,
content: 'Test Memory',
roomId: params.roomIds[0],
entityId: 'user-id' as UUID,
agentId: params.agentId ?? ('agent-id' as UUID),
},
] as unknown as Memory[];
}
// Mock method for getting cached embeddings
/**
* Fetch cached embeddings based on the query parameters.
*
* @param {Object} _params - The parameters used to query the cached embeddings.
* @param {string} _params.query_table_name - The name of the table used for the query.
* @param {number} _params.query_threshold - The threshold value for the query.
* @param {string} _params.query_input - The input string for the query.
* @param {string} _params.query_field_name - The name of the field used in the query.
* @param {string} _params.query_field_sub_name - The subfield name used in the query.
* @param {number} _params.query_match_count - The number of matches for the query.
* @return {Promise<{embedding: number[], levenshtein_score: number}[]>} The cached embeddings with their Levenshtein scores.
*/
async getCachedEmbeddings(_params: {
query_table_name: string;
query_threshold: number;
query_input: string;
query_field_name: string;
query_field_sub_name: string;
query_match_count: number;
}): Promise<
{
embedding: number[];
levenshtein_score: number;
}[]
> {
return [
{
embedding: [0.1, 0.2, 0.3],
levenshtein_score: 0.4,
},
];
}
// Mock method for searching memories
/**
* Asynchronously searches for memories based on the provided parameters.
*
* @param {Object} params - The parameters for the memory search.
* @param {string} params.tableName - The name of the table to search memories in.
* @param {string} params.roomId - The room ID to search memories related to.
* @param {number[]} params.embedding - The memory embedding for similarity matching.
* @param {number} params.match_threshold - The threshold for match similarity.
* @param {number} params.count - The number of memories to retrieve.
* @param {boolean} params.unique - Flag to retrieve unique memories only.
* @returns {Promise<Array<Memory>>} The list of memories that match the search criteria.
*/
async searchMemories(params: {
tableName: string;
roomId: `${string}-${string}-${string}-${string}-${string}`;
embedding: number[];
match_threshold: number;
count: number;
unique: boolean;
}): Promise<Memory[]> {
return [
{
id: 'memory-id' as UUID,
content: 'Test Memory',
roomId: params.roomId,
entityId: 'user-id' as UUID,
agentId: 'agent-id' as UUID,
},
] as unknown as Memory[];
}
// Mock method for getting account by ID
/**
* Asynchronously retrieves an Entity by its unique ID.
*
* @param {UUID} entityId - The unique identifier of the Entity to retrieve.
* @returns {Promise<Entity | null>} A Promise that resolves with the Entity object if found, otherwise null.
*/
async getEntityById(entityId: UUID): Promise<Entity | null> {
return {
id: entityId,
metadata: {
username: 'testuser',
name: 'Test Entity',
},
names: ['Test Entity'],
agentId: 'agent-id' as UUID,
} as Entity;
}
// Other methods stay the same...
/**
* Asynchronously creates a new entity for a given account.
*
* @param {Entity} _account - The account for which the entity is being created.
* @returns {Promise<boolean>} A Promise that resolves to true if entity creation is successful.
*/
async createEntity(_account: Entity): Promise<boolean> {
return true;
}
/**
* Retrieves memories based on the specified parameters.
*
* @param {Object} params - The parameters for fetching memories.
* @param {UUID} params.roomId - The ID of the room to fetch memories from.
* @param {number} [params.count] - The number of memories to fetch.
* @param {boolean} [params.unique] - Whether to fetch unique memories.
* @param {string} params.tableName - The name of the table storing the memories.
* @returns {Promise<Memory[]>} - A Promise that resolves to an array of Memory objects.
*/
async getMemories(params: {
roomId: UUID;
count?: number;
unique?: boolean;
tableName: string;
}): Promise<Memory[]> {
return [
{
id: 'memory-id' as UUID,
content: 'Test Memory',
roomId: params.roomId,
entityId: 'user-id' as UUID,
agentId: 'agent-id' as UUID,
},
] as unknown as Memory[];
}
/**
* Asynchronously retrieves a list of entities based on the provided roomId.
* @param {Object} _params - The parameters object.
* @param {UUID} _params.roomId - The roomId to filter entities by.
* @returns {Promise<Entity[]>} - A promise that resolves to an array of Entity objects.
*/
async getEntities(_params: { roomId: UUID }): Promise<Entity[]> {
return [
{
id: 'actor-id' as UUID,
name: 'Test Entity',
username: 'testactor',
roomId: 'room-id' as UUID, // Ensure roomId is provided
},
] as unknown as Entity[];
}
}
describe('DatabaseAdapter Tests', () => {
let adapter: MockDatabaseAdapter;
const roomId = 'room-id' as UUID;
beforeEach(() => {
adapter = new MockDatabaseAdapter();
});
it('should return memories by room ID', async () => {
const memories = await adapter.getMemoriesByRoomIds({
roomIds: ['room-id' as `${string}-${string}-${string}-${string}-${string}`],
tableName: 'test_table',
});
expect(memories).toHaveLength(1);
expect(memories[0].roomId).toBe('room-id' as UUID);
});
it('should return cached embeddings', async () => {
const embeddings = await adapter.getCachedEmbeddings({
query_table_name: 'test_table',
query_threshold: 0.5,
query_input: 'test query',
query_field_name: 'field',
query_field_sub_name: 'subfield',
query_match_count: 5,
});
expect(embeddings).toHaveLength(1);
expect(embeddings[0].embedding).toEqual([0.1, 0.2, 0.3]);
});
it('should search memories based on embedding', async () => {
const memories = await adapter.searchMemories({
tableName: 'test_table',
roomId: 'room-id' as `${string}-${string}-${string}-${string}-${string}`,
embedding: [0.1, 0.2, 0.3],
match_threshold: 0.5,
count: 3,
unique: true,
});
expect(memories).toHaveLength(1);
expect(memories[0].roomId).toBe('room-id' as UUID);
});
it('should get an account by user ID', async () => {
const account = await adapter.getEntityById('test-user-id' as UUID);
expect(account).not.toBeNull();
expect(account?.metadata?.username).toBe('testuser');
});
it('should create a new account', async () => {
const newEntity: Entity = {
id: 'new-user-id' as UUID,
names: ['New Entity'],
metadata: {
username: 'newuser',
name: 'New Entity',
},
agentId: 'agent-id' as UUID,
};
const result = await adapter.createEntity(newEntity);
expect(result).toBe(true);
});
it('should return entities by room ID', async () => {
const entities = await adapter.getEntities({ roomId });
expect(entities).toHaveLength(1);
});
});