-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathmerge_cluster_extraction_v1.test.ts
106 lines (98 loc) · 2.34 KB
/
merge_cluster_extraction_v1.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
import { describe, it, vi, expect, beforeEach } from 'vitest';
import MergeClusterExtractionNode, {
merge_cluster_extraction_node_data
} from '$lib/compute/merge_cluster_extraction_v1';
import deepCopy from 'deep-copy';
describe('MergeClusterExtractionNode class', () => {
let node;
let inputData;
const timeout = 60000;
beforeEach(() => {
vi.mock('$lib/utils', () => ({
readFileFromGCS: vi.fn(() => Promise.resolve()),
uploadJSONToGCS: vi.fn(() => Promise.resolve())
}));
node = new MergeClusterExtractionNode(deepCopy(merge_cluster_extraction_node_data));
node.data.input_ids.csv = 'csv';
node.data.input_ids.open_ai_key = 'open_ai_key';
inputData = {
open_ai_key: 'sk-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa',
csv: [
{
topics: [
{
topicName: 'Weather',
subtopics: ['Current Conditions']
}
]
},
{
topics: [
{
topicName: 'Weather',
subtopics: ['Precipitation Duration']
}
]
}
]
};
}, timeout);
it(
'should merge cluster extractions into a single output',
async () => {
const output = await node.compute(
inputData,
'run',
console.log,
console.error,
console.log,
'test_slug',
null
);
expect(output).toEqual({
topics: [
{
topicName: 'Weather',
subtopics: ['Current Conditions', 'Precipitation Duration']
}
]
});
console.log(JSON.stringify(output, null, 2));
},
timeout
);
it(
'should handle empty input data',
async () => {
inputData.csv = [];
const output = await node.compute(
inputData,
'run',
console.log,
console.error,
console.log,
'test_slug',
null
);
expect(output).toBeUndefined();
},
timeout
);
it(
'should not process if no open_ai_key is provided',
async () => {
delete inputData.open_ai_key;
const output = await node.compute(
inputData,
'run',
console.log,
console.error,
console.log,
'test_slug',
null
);
expect(output).toBeUndefined();
},
timeout
);
});