-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathimport.spec.ts
More file actions
220 lines (192 loc) · 6.23 KB
/
Copy pathimport.spec.ts
File metadata and controls
220 lines (192 loc) · 6.23 KB
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
import nock from "../test/helpers/nock";
import * as stream from "stream";
import * as sinon from "sinon";
import * as auth from "../auth";
import * as utils from "../utils";
import { expect } from "chai";
import DatabaseImporter from "./import";
import { FirebaseError } from "../error";
const dbUrl = new URL("https://test-db.firebaseio.com/foo");
const payloadSize = 1024 * 1024 * 10;
const concurrencyLimit = 5;
describe("DatabaseImporter", () => {
let authStub: sinon.SinonStub | undefined;
before(() => {
if (typeof (auth.getAccessToken as any).restore !== "function") {
authStub = sinon.stub(auth, "getAccessToken").resolves({ access_token: "owner" } as any);
}
});
after(() => {
if (authStub) {
authStub.restore();
}
});
const DATA = { a: 100, b: [true, "bar", { f: { g: 0, h: 1 }, i: "baz" }], c: { d: false } };
let DATA_STREAM: stream.Readable;
beforeEach(() => {
DATA_STREAM = utils.stringToStream(JSON.stringify(DATA))!;
});
it("throws FirebaseError when JSON is invalid", async () => {
nock("https://test-db.firebaseio.com").get("/foo.json?shallow=true").reply(200);
const INVALID_JSON = '{"a": {"b"}}';
const importer = new DatabaseImporter(
dbUrl,
utils.stringToStream(INVALID_JSON)!,
/* importPath= */ "/",
payloadSize,
concurrencyLimit,
);
await expect(importer.execute()).to.be.rejectedWith(
FirebaseError,
"Invalid data; couldn't parse JSON object, array, or value.",
);
});
it("batches data from different top-level objects", async () => {
nock("https://test-db.firebaseio.com").get("/foo.json?shallow=true").reply(200);
nock("https://test-db.firebaseio.com")
.patch("/foo.json", JSON.stringify({ a: 100, "b/0": true, "b/1": "bar" }))
.reply(200);
nock("https://test-db.firebaseio.com")
.patch("/foo/b/2.json", JSON.stringify({ f: { g: 0, h: 1 }, i: "baz" }))
.reply(200);
nock("https://test-db.firebaseio.com")
.patch("/foo/c.json", JSON.stringify({ d: false }))
.reply(200);
const importer = new DatabaseImporter(
dbUrl,
DATA_STREAM,
/* importPath= */ "/",
/* payloadSize= */ 40,
concurrencyLimit,
);
const responses = await importer.execute();
expect(responses).to.have.length(3);
expect(nock.isDone()).to.be.true;
});
it("writes data as a single batch for large enough payload size", async () => {
nock("https://test-db.firebaseio.com").get("/foo.json?shallow=true").reply(200);
nock("https://test-db.firebaseio.com")
.patch(
"/foo.json",
JSON.stringify({
a: 100,
b: [true, "bar", { f: { g: 0, h: 1 }, i: "baz" }],
c: { d: false },
}),
)
.reply(200);
const importer = new DatabaseImporter(
dbUrl,
DATA_STREAM,
/* importPath= */ "/",
payloadSize,
concurrencyLimit,
);
const responses = await importer.execute();
expect(responses).to.have.length(1);
expect(nock.isDone()).to.be.true;
});
it("imports from data path", async () => {
nock("https://test-db.firebaseio.com").get("/foo.json?shallow=true").reply(200);
nock("https://test-db.firebaseio.com")
.patch("/foo/c.json", JSON.stringify({ d: false }))
.reply(200);
const importer = new DatabaseImporter(
dbUrl,
DATA_STREAM,
/* importPath= */ "/c",
payloadSize,
concurrencyLimit,
);
const responses = await importer.execute();
expect(responses).to.have.length(1);
expect(nock.isDone()).to.be.true;
});
it("writes primitive as object", async () => {
nock("https://test-db.firebaseio.com").get("/foo.json?shallow=true").reply(200);
nock("https://test-db.firebaseio.com")
.patch("/foo.json", JSON.stringify({ a: 100 }))
.reply(200);
const importer = new DatabaseImporter(
dbUrl,
DATA_STREAM,
/* importPath= */ "/a",
payloadSize,
concurrencyLimit,
);
const responses = await importer.execute();
expect(responses).to.have.length(1);
expect(nock.isDone()).to.be.true;
});
it("writes array as object", async () => {
nock("https://test-db.firebaseio.com").get("/foo.json?shallow=true").reply(200);
nock("https://test-db.firebaseio.com")
.patch(
"/foo/b.json",
JSON.stringify({ "0": true, "1": "bar", "2": { f: { g: 0, h: 1 }, i: "baz" } }),
)
.reply(200);
const importer = new DatabaseImporter(
dbUrl,
DATA_STREAM,
/* importPath= */ "/b",
payloadSize,
concurrencyLimit,
);
const responses = await importer.execute();
expect(responses).to.have.length(1);
expect(nock.isDone()).to.be.true;
});
it("throws FirebaseError when data location is nonempty", async () => {
nock("https://test-db.firebaseio.com").get("/foo.json?shallow=true").reply(200, { a: "foo" });
const importer = new DatabaseImporter(
dbUrl,
DATA_STREAM,
/* importPath= */ "/",
payloadSize,
concurrencyLimit,
);
await expect(importer.execute()).to.be.rejectedWith(
FirebaseError,
/Importing is only allowed for an empty location./,
);
});
it("retries non-fatal connection timeout error", async () => {
const timeoutErr = new Error("connect ETIMEDOUT") as any;
timeoutErr.code = "ETIMEDOUT";
nock("https://test-db.firebaseio.com").get("/foo.json?shallow=true").reply(200);
nock("https://test-db.firebaseio.com")
.patch(
"/foo.json",
JSON.stringify({
a: 100,
b: [true, "bar", { f: { g: 0, h: 1 }, i: "baz" }],
c: { d: false },
}),
)
.once()
.replyWithError(timeoutErr);
nock("https://test-db.firebaseio.com")
.patch(
"/foo.json",
JSON.stringify({
a: 100,
b: [true, "bar", { f: { g: 0, h: 1 }, i: "baz" }],
c: { d: false },
}),
)
.once()
.reply(200);
const importer = new DatabaseImporter(
dbUrl,
DATA_STREAM,
/* importPath= */ "/",
payloadSize,
concurrencyLimit,
);
importer.nonFatalRetryTimeout = 0;
const responses = await importer.execute();
expect(responses).to.have.length(1);
expect(nock.isDone()).to.be.true;
});
});