-
Notifications
You must be signed in to change notification settings - Fork 7
/
integration.test.js
289 lines (256 loc) · 10.9 KB
/
integration.test.js
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
import { fetch } from '@web-std/fetch'
import git from 'git-rev-sync'
import pWaitFor from 'p-wait-for'
import { unixfs } from '@helia/unixfs'
import { multiaddr } from '@multiformats/multiaddr'
import * as Link from 'multiformats/link'
import { code as RAW_CODE } from 'multiformats/codecs/raw'
import { base58btc } from 'multiformats/bases/base58'
import { HeadObjectCommand } from '@aws-sdk/client-s3'
import { PutItemCommand } from '@aws-sdk/client-dynamodb'
import { marshall } from '@aws-sdk/util-dynamodb'
import * as DidMailto from '@web3-storage/did-mailto'
import { METRICS_NAMES, SPACE_METRICS_NAMES } from '../upload-api/constants.js'
import { test } from './helpers/context.js'
import {
getStage,
getApiEndpoint,
getCloudflareBucketClient,
getRoundaboutEndpoint,
getReceiptsEndpoint,
getDynamoDb
} from './helpers/deployment.js'
import { createMailSlurpInbox, createNewClient, setupNewClient } from './helpers/up-client.js'
import { randomFile } from './helpers/random.js'
import { getMetrics, getSpaceMetrics } from './helpers/metrics.js'
import { createNode } from './helpers/helia.js'
test.before(t => {
t.context = {
apiEndpoint: getApiEndpoint(),
roundaboutEndpoint: getRoundaboutEndpoint(),
metricsDynamo: getDynamoDb('admin-metrics'),
spaceMetricsDynamo: getDynamoDb('space-metrics'),
rateLimitsDynamo: getDynamoDb('rate-limit')
}
})
test('GET /', async t => {
const response = await fetch(t.context.apiEndpoint)
t.is(response.status, 200)
})
test('GET /version', async t => {
const stage = getStage()
const response = await fetch(`${t.context.apiEndpoint}/version`)
t.is(response.status, 200)
const body = await response.json()
t.is(body.env, stage)
t.is(body.commit, git.long('.'))
})
test('upload-api /metrics', async t => {
const apiEndpoint = getApiEndpoint()
const response = await fetch(`${apiEndpoint}/metrics`)
t.is(response.status, 200)
const body = await response.text()
/**
* # HELP w3up_bytes Total bytes associated with each invocation.
* # TYPE w3up_bytes counter
* w3up_bytes{can="store/add"} 0
* w3up_bytes{can="store/remove"} 0
* w3up_bytes{can="blob/add"} 0
* w3up_bytes{can="blob/remove"} 0
*/
t.is((body.match(/w3up_bytes/g) || []).length, 6)
/**
* # HELP w3up_invocations_total Total number of invocations.
* # TYPE w3up_invocations_total counter
* w3up_invocations_total{can="store/add"} 1
* w3up_invocations_total{can="store/remove"} 0
* w3up_invocations_total{can="upload/add"} 0
* w3up_invocations_total{can="upload/remove"} 1
* w3up_invocations_total{can="blob/add"} 1
* w3up_invocations_total{can="blob/remove"} 0
*/
t.is((body.match(/w3up_invocations_total/g) || []).length, 8)
})
test('authorizations can be blocked by email or domain', async t => {
const client = await createNewClient(t.context.apiEndpoint)
// test email blocking
await t.context.rateLimitsDynamo.client.send(new PutItemCommand({
TableName: t.context.rateLimitsDynamo.tableName,
Item: marshall({
id: Math.random().toString(10),
subject: 'travis@example.com',
rate: 0
})
}))
// it would be nice to use t.throwsAsync here, but that doesn't work with errors that aren't exceptions: https://github.com/avajs/ava/issues/2517
try {
await client.authorize('travis@example.com')
t.fail('authorize should fail with a blocked email address')
} catch (e) {
t.is(e.name, 'AccountBlocked')
t.is(e.message, 'Account identified by did:mailto:example.com:travis is blocked')
}
// test domain blocking
await t.context.rateLimitsDynamo.client.send(new PutItemCommand({
TableName: t.context.rateLimitsDynamo.tableName,
Item: marshall({
id: Math.random().toString(10),
subject: 'example2.com',
rate: 0
})
}))
// it would be nice to use t.throwsAsync here, but that doesn't work with errors that aren't exceptions: https://github.com/avajs/ava/issues/2517
try {
await client.login('travis@example2.com')
t.fail('authorize should fail with a blocked domain')
} catch (e) {
t.is(e.name, 'AccountBlocked')
t.is(e.message, 'Account identified by did:mailto:example2.com:travis is blocked')
}
})
/**
* Integration test for all main flow on uploading a file to read interfaces and kinesis stream
* 1. Login client
* 2. Create new space
* 3. Get metrics before uploading any data
* 4. Upload a small file with single Blob
* 5. Check Blob was correctly stored on bucket
* 6. Check Space Uploads include Blob
* 7. Read from Roundabout
* 8. Read from w3link
* 9. Read from Hoverboard
* 10. Remove
* 11. Verify metrics
*/
test('w3infra store/upload integration flow', async t => {
const stage = getStage()
const writeTargetBucketName = process.env.R2_CARPARK_BUCKET_NAME
if (!writeTargetBucketName) {
throw new Error('no write target bucket name configure using ENV VAR `R2_CARPARK_BUCKET_NAME`')
}
const inbox = await createMailSlurpInbox()
const { client } = await setupNewClient(t.context.apiEndpoint, { inbox })
const spaceDid = client.currentSpace()?.did()
if (!spaceDid) {
throw new Error('Testing space DID must be set')
}
const account = client.accounts()[DidMailto.fromEmail(inbox.email)]
// it should be possible to create more than one space
const space = await client.createSpace('2nd space')
await account.provision(space.did())
await space.save()
// Get space metrics before upload
const spaceBeforeUploadAddMetrics = await getSpaceMetrics(t, spaceDid, SPACE_METRICS_NAMES.UPLOAD_ADD_TOTAL)
const spaceBeforeBlobAddMetrics = await getSpaceMetrics(t, spaceDid, SPACE_METRICS_NAMES.BLOB_ADD_TOTAL)
const spaceBeforeBlobAddSizeMetrics = await getSpaceMetrics(t, spaceDid, SPACE_METRICS_NAMES.BLOB_ADD_SIZE_TOTAL)
// Get metrics before upload
const beforeOperationMetrics = await getMetrics(t)
const beforeBlobAddTotal = beforeOperationMetrics.find(row => row.name === METRICS_NAMES.BLOB_ADD_TOTAL)
const beforeUploadAddTotal = beforeOperationMetrics.find(row => row.name === METRICS_NAMES.UPLOAD_ADD_TOTAL)
const beforeBlobAddSizeTotal = beforeOperationMetrics.find(row => row.name === METRICS_NAMES.BLOB_ADD_SIZE_TOTAL)
const r2Client = getCloudflareBucketClient()
console.log('Creating new File')
const file = await randomFile(100)
const shards = []
// Upload new file
const fileLink = await client.uploadFile(file, {
onShardStored: (meta) => {
shards.push(meta.cid)
console.log('Shard file written', meta.cid)
},
receiptsEndpoint: getReceiptsEndpoint()
})
t.truthy(fileLink)
t.is(shards.length, 1)
console.log('Uploaded new file', fileLink)
// Check carpark
const encodedMultihash = base58btc.encode(shards[0].multihash.bytes)
console.log('Checking blob stored in write target:', encodedMultihash)
const carparkRequest = await r2Client.send(
new HeadObjectCommand({
Bucket: writeTargetBucketName,
Key: `${encodedMultihash}/${encodedMultihash}.blob`,
})
)
t.is(carparkRequest.$metadata.httpStatusCode, 200)
const carSize = carparkRequest.ContentLength
// List space files
let uploadFound, cursor
do {
const listResult = await client.capability.upload.list({
size: 5,
cursor
})
uploadFound = listResult.results.find(upload => upload.root.equals(fileLink))
cursor = listResult.cursor
} while (!uploadFound)
t.is(uploadFound.shards?.length, 1)
for (let i = 0; i < shards.length; i++) {
t.truthy(uploadFound.shards?.[i].equals(shards[i]))
}
// Read from Roundabout returns 200
const rawCid = Link.create(RAW_CODE, shards[0].multihash)
console.log('Checking Roundabout can fetch raw content:', rawCid.toString())
const roundaboutResponse = await fetch(
`${t.context.roundaboutEndpoint}/${rawCid.toString()}`
)
t.is(roundaboutResponse.status, 200)
// Verify w3link can resolve uploaded file via HTTP
console.log('Checking w3link can fetch root', fileLink.toString())
const w3linkResponse = await fetch(
`https://${fileLink}.ipfs-staging.w3s.link`,
{
method: 'HEAD'
}
)
t.is(w3linkResponse.status, 200)
// Verify hoverboard can resolved uploaded root via Bitswap
console.log('Checking Hoverboard can fetch root', fileLink.toString())
const helia = await createNode()
const heliaFs = unixfs(helia)
const hoverboardMultiaddr = multiaddr('/dns4/elastic-staging.dag.house/tcp/443/wss/p2p/Qmc5vg9zuLYvDR1wtYHCaxjBHenfCNautRwCjG3n5v5fbs')
console.log(`Dialing ${hoverboardMultiaddr}`)
await helia.libp2p.dial(hoverboardMultiaddr)
// @ts-expect-error link different from CID
const rootStat = await heliaFs.stat(fileLink)
t.truthy(rootStat)
t.is(rootStat.type, 'raw')
await helia.stop()
// Remove file from space
console.log(`Removing ${fileLink}`)
const removeResult = await client.capability.upload.remove(fileLink)
// @ts-expect-error error not typed
t.falsy(removeResult?.error)
console.log('Checking metrics match work done')
// Check metrics were updated
if (beforeBlobAddSizeTotal && spaceBeforeUploadAddMetrics && spaceBeforeBlobAddSizeMetrics && beforeUploadAddTotal) {
await pWaitFor(async () => {
const afterOperationMetrics = await getMetrics(t)
const afterBlobAddTotal = afterOperationMetrics.find(row => row.name === METRICS_NAMES.BLOB_ADD_TOTAL)
const afterUploadAddTotal = afterOperationMetrics.find(row => row.name === METRICS_NAMES.UPLOAD_ADD_TOTAL)
const afterBlobAddSizeTotal = afterOperationMetrics.find(row => row.name === METRICS_NAMES.BLOB_ADD_SIZE_TOTAL)
const spaceAfterUploadAddMetrics = await getSpaceMetrics(t, spaceDid, SPACE_METRICS_NAMES.UPLOAD_ADD_TOTAL)
const spaceAfterBlobAddMetrics = await getSpaceMetrics(t, spaceDid, SPACE_METRICS_NAMES.BLOB_ADD_TOTAL)
const spaceAfterBlobAddSizeMetrics = await getSpaceMetrics(t, spaceDid, SPACE_METRICS_NAMES.BLOB_ADD_SIZE_TOTAL)
// If staging accept more broad condition given multiple parallel tests can happen there
if (stage === 'staging') {
return (
afterBlobAddTotal?.value >= beforeBlobAddTotal?.value + 1 &&
afterUploadAddTotal?.value === beforeUploadAddTotal?.value + 1 &&
afterBlobAddSizeTotal?.value >= beforeBlobAddSizeTotal.value + carSize &&
spaceAfterBlobAddMetrics?.value >= spaceBeforeBlobAddMetrics?.value + 1 &&
spaceAfterUploadAddMetrics?.value >= spaceBeforeUploadAddMetrics?.value + 1 &&
spaceAfterBlobAddSizeMetrics?.value >= spaceBeforeBlobAddSizeMetrics?.value + carSize
)
}
return (
afterBlobAddTotal?.value === beforeBlobAddTotal?.value + 1 &&
afterUploadAddTotal?.value === beforeUploadAddTotal?.value + 1 &&
afterBlobAddSizeTotal?.value === beforeBlobAddSizeTotal.value + carSize &&
spaceAfterBlobAddMetrics?.value === spaceBeforeBlobAddMetrics?.value + 1 &&
spaceAfterUploadAddMetrics?.value === spaceBeforeUploadAddMetrics?.value + 1 &&
spaceAfterBlobAddSizeMetrics?.value === spaceBeforeBlobAddSizeMetrics?.value + carSize
)
})
}
})