This repository has been archived by the owner on Jul 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
smoke.js
163 lines (141 loc) · 3.82 KB
/
smoke.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
var bz = require('./build/node/index');
var colors = require('colors');
require('magic-constants')(global);
var authConfig = require('./test/browser/files/test-config.json');
console.log("authConfig", authConfig);
var bugzilla = bz.createClient(); // PROD
// var bugzilla = bz.createClient(authConfig);
// client.login(function (err, response) {
// console.log("this", this);
// client.getUser(client._auth.id, function (err, user) {
// // if (err) throw err;
// console.log("User>", user);
// // var bug = {
// // summary: 'test bug',
// // product: 'Firefox',
// // component: 'Developer Tools',
// // user: user,
// // comments: [{
// // text: 'something',
// // creator: user
// // }]
// // }
// // client.createBug(bug, function (e, r) {
// // if (e) throw e;
// // console.log("created? ", r);
// // });
// })
// });
// client.getConfiguration(function(err, result) {
// if (err) throw err;
// console.log("config>", result);
// });
// client.searchUsers("[email protected]", function(error, users) {
// console.log("go here 1");
// if (error) throw error;
// console.log("users>", users);
// });
var assert = {
ok: function(val1, val2) {
var ret;
if (val2)
ret = (val1 === val2)
else
ret = !!val1
assert._log(ret);
},
equal: function(val1, val2) {
assert._log((val1 === val2));
},
_log: function(ok) {
var args = [].slice.call(arguments);
// args.shift();
ok ? console.log(colors.green("pass> "+ok)) : console.error(colors.red("fail>", ok, __caller+':'+__caller_lineno));
}
}
// bugzilla.getBug(6000, function(err, bug) {
// if (err) throw err;
// assert.ok(bug.summary);
// });
// private bug, should fail
bugzilla.getBug(767101, function(err, bug) {
if (err) throw err;
console.log("bug>", bug);
// if (err) throw err;
// assert.ok(bug.summary);
});
// bugzilla.bugHistory(9955, function(err, bugs) {
// if (err) throw err;
// assert.equal(bugs.length, 1);
// assert.ok(bugs[0].history);
// });
// bugzilla.searchBugs({
// summary: "window",
// summary_type: "contains_all_words"
// },
// function(err, bugs) {
// if (err) throw err;
// assert.ok(bugs.length);
// }
// );
// bugzilla.createBug({
// product: "Firefox",
// component: "Developer Tools",
// summary: "it's broken",
// version: "Trunk",
// platform: "All",
// op_sys: "All"
// },
// function(err, id) {
// if (err) throw err;
// assert.equal(typeof id, "number");
// }
// );
// bugzilla.getBug(9955, function(err, bug) {
// if (err) throw err;
// bug = {
// update_token: bug.update_token,
// summary: 'new summary'
// }
// bugzilla.updateBug(9955, bug, function(err, ok) {
// if (err) throw err;
// assert.ok(ok);
// });
// });
// // bugzilla.countBugs({
// // summary: "windowvane",
// // summary_type: "contains_all_words"
// // },
// // function(err, count) {
// // if (err) throw err;
// // assert.equal(count, 1);
// // }
// // );
// bugzilla.bugComments(6000, function(err, comments) {
// if (err) throw err;
// assert.ok(comments.length);
// });
// bugzilla.addComment(6000, {
// comment: "new comment"
// },
// function(err, ok) {
// if (err) throw err;
// assert.ok(ok);
// }
// );
// bugzilla.bugHistory(9955, function(err, history) {
// if (err) throw err;
// assert.ok(history.length);
// });
// // bugzilla.bugFlags(9955, function(err, flags) {
// // assert.ok(!err, err);
// // assert.ok(flags.length);
// // });
// bugzilla.bugAttachments(9955, function(err, attachments) {
// if (err) throw err;
// assert.ok(attachments);
// });
// bugzilla.bugComments(6000, function(err, comments) {
// if (err) throw err;
// console.log("comments.length>", comments.length);
// });