-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_populate.js
131 lines (124 loc) · 3.94 KB
/
test_populate.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
var epdb = require('./epdb');
var cnt = 10;
//random product generation
setTimeout(function () {
//product related data
var names = [
'Amul Taaza',
'Britania Buiscuit',
'Marie Gold',
'Goa Dairy Milk',
'Colgate ToothPaste',
'Standard Horlicks',
'Kanan Devan Tea',
'Tata Salt',
'Sugar',
'Wheat Flour',
'Bournvita',
'Flavoured Milk'
];
var descriptions = [
'Tasty and Enriching',
'Best Selling product',
'Nutritious',
'Enjoy The Taste Of Goa',
'Created with Joy',
'No. 1 Brand in India'
];
var brands = [
'Amul',
'Goa Dairy',
'Tata',
'Colgate',
'Horlicks',
];
var units = ['Ltrs', 'Kg'];
var facets = [
'thickness',
'Calories',
'Fat_percentage',
];
for (var i = 1; i <= cnt; i++) {
var pname = names[Math.floor(Math.random() * names.length)];
var p = { //TODO team to fill the object
"brand_of_product": brands[Math.floor(Math.random() * brands.length)],
"gtin": randomString(14, '0123456789'),
"pname": pname,
"category": Math.floor(Math.random() * 30),
"image_url": pname.concat('.jpg'),
"pricing": {
"default_mrp": Math.floor(Math.random() * 500),
"mrp": [
{
"city": Math.floor(Math.random() * 6),
"mrp": Math.floor(Math.random() * 500)
},
{
"city": Math.floor(Math.random() * 6),
"mrp": Math.floor(Math.random() * 500)
}
]
},
"common_fields": {
"c_facet_qty": Math.floor(Math.random() * 3),
"c_qty_unit": units[Math.floor(Math.random() * 2)],
"c_facet_wt": Math.floor(Math.random() * 3),
"c_qty_wt": "Kg"
},
"facets": [
{
"type": facets[Math.floor(Math.random() * facets.length)],
"val": Math.floor(Math.random() * 30)
},
{
"type": facets[Math.floor(Math.random() * facets.length)],
"val": Math.floor(Math.random() * 30)
}],
"vars": [],
"related_products": []
};
//to generate random variants
for (var j = 0; j < Math.floor(Math.random() * 5); j++) {
p.vars.push({
"vid": Math.floor(Math.random() * 100),
"vname": names[Math.floor(Math.random() * names.length)],
"facets": [
{
"type": facets[Math.floor(Math.random() * facets.length)],
"val": Math.floor(Math.random() * 30)
},
{
"type": facets[Math.floor(Math.random() * facets.length)],
"val": Math.floor(Math.random() * 30)
}
]
});
}
//to generate random recommended products
for (var j = 0; j < Math.floor(Math.random() * 5) + 1; j++) {
pname = names[Math.floor(Math.random() * names.length)];
p.related_products.push({
"id": Math.floor(Math.random() * 100),
"pname": pname,
"purl": pname.concat('.jpg')
});
}
epdb.saveProduct(p, function (pdt) {
console.log("Added %j", pdt);
});
}
}, 15000); //Wait for 15 sec for connection to be established with DB
//My custom functions
function randomString(len, charSet) {
charSet = charSet || 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
var randomString = '';
for (var i = 0; i < len; i++) {
var randomPoz = Math.floor(Math.random() * charSet.length);
randomString += charSet.substring(randomPoz, randomPoz + 1);
}
return randomString;
}
function randomGen(len)
{
return Math.floor(Math.random() * len);
}