-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathscript1.js
88 lines (69 loc) · 1.86 KB
/
script1.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
// script1.js
// Generates 1 impression, sends to all participants
const request = require('request-promise')
const mode = process.env.mode
const wait = timeout => new Promise(resolve => setTimeout(resolve, timeout))
function generateImpressions (count, price, supplyId, demandId) {
const impressions = []
for (let i = 0; i < count; i++) {
impressions.push({ price, supplyId, demandId, impressionId: (i + 1).toString(), time: new Date().getTime() / 1000 })
}
return impressions
}
const demandId = '0x11111111111111111111'
const supplyId = '0x22222222222222222222'
const impressions = generateImpressions(1, 1, supplyId, demandId)
console.log('\nImpression to send:\n')
console.log(impressions)
console.log('\n')
async function openChannel () {
// Supply
await request('http://localhost:3000/open')
// Demand
await request('http://localhost:3001/open')
// AdMarket
await request('http://localhost:3002/open')
console.log('Connected to all adservers')
}
async function sendImpression (impression) {
request.post({
url: 'http://localhost:3002',
body: impression,
json: true
})
request.post({
url: 'http://localhost:3000',
body: impression,
json: true
})
request.post({
url: 'http://localhost:3001',
body: impression,
json: true
})
}
async function main () {
await openChannel()
for (let impression of impressions) {
await sendImpression(impression)
}
console.log('Impressions sent')
// await wait(1000)
// const body = await request('http://localhost:3001/state')
/*
request.get({ url: 'http://localhost:3000/verify', body: {
supplyId: supplyId,
demandId: demandId,
root: root,
start: 0,
end: 2
}, json: true }, function(err, res, body) {
console.log('PEWPEWPEW')
console.log(body)
});
*/
}
main().catch((err) => {
console.error(err.stack)
process.exit(1)
})