-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflat-object-sync.test.ts
44 lines (34 loc) · 1.27 KB
/
flat-object-sync.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
import { GraphSynchronizer, IGraphSyncOptions } from '@ablestack/rdo';
import { Logger } from '@ablestack/rdo/infrastructure/logger';
const logger = Logger.make('flat-object-sync.test.ts');
// --------------------------------------------------------------
// CONFIG
// --------------------------------------------------------------
const config: IGraphSyncOptions = {}; // No config needed for basic scenarios
// --------------------------------------------------------------
// TEST
// --------------------------------------------------------------
test('Flat object demo', () => {
const fooRDO = new FooRDO();
const graphSynchronizer = new GraphSynchronizer(config);
// EXECUTE
graphSynchronizer.smartSync({ rootRdo: fooRDO, rootSourceNode: fooSourceJSON });
// RESULTS VERIFICATION
expect(fooRDO.id).toEqual(fooSourceJSON.id);
expect(fooRDO.name).toEqual(fooSourceJSON.name);
});
// --------------------------------------------------------------
// MODELS & DATA
// --------------------------------------------------------------
//
// Source Data Models
type Bar = { id: string; name: string };
//
// Source Data
export const fooSourceJSON = { id: 'foo-1', name: 'Simple Foo 1' };
//
// RDO Graphs
class FooRDO {
public id: string = '';
public name: string = '';
}