-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
203 lines (172 loc) · 5.35 KB
/
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
/**
* Modules from the community: package.json
*/
var expect = require('chai').expect;
var usaepay = require('./usaepay.js');
var USAEpay = new usaepay(
{
key: 'xxxx',
pin: 'xxxx',
urlsuffix: 'xxxx',
environment: 'xxxx'
});
var cardForeignId, transactionForeignId;
describe('Card Methods', function ()
{
var data = {
cardNumber: '4111111111111111',
exp: '07/20',
cvv: '232',
firstName: 'Geoffroy',
lastName: 'Lesage',
address: '1 Main Street',
zipcode: '11201'
};
it('should create a credit card on USAEpay', function (done)
{
USAEpay.Card.Create(data).then(function (cardData)
{
/* jshint ignore:start */
expect(cardData).to.exist;
expect(cardData.foreignId).to.exist;
expect(cardData.cardType).to.exist;
expect(cardData.maskedNumber).to.exist;
expect(cardData.cardHolderName).to.exist;
/* jshint ignore:end */
cardForeignId = cardData.foreignId;
done();
}).catch(done);
});
// NOT YET IMPLEMENTED ON USAEpay
// it('should get a credit card from USAEpay', function (done)
// {
// USAEpay.Card.Get(
// {
// foreignKey: cardForeignId
// }).then(function (res)
// {
// expect(res).to.exist; // jshint ignore:line
// expect(res.last4).to.exist; // jshint ignore:line
// done();
// }).catch(done);
// });
it('should bill a credit card on USAEpay', function (done)
{
USAEpay.Card.Sale(
{
foreignKey: cardForeignId,
amount: 1
}).then(function (saleData)
{
expect(saleData).to.exist; // jshint ignore:line
expect(saleData.foreignId).to.exist; // jshint ignore:line
transactionForeignId = saleData.foreignId;
done();
}).catch(done);
});
it('should void a credit card on USAEpay', function (done)
{
USAEpay.Card.Sale(
{
foreignKey: cardForeignId,
amount: 2
}).then(function (saleData)
{
expect(saleData).to.exist; // jshint ignore:line
expect(saleData.foreignId).to.exist; // jshint ignore:line
return USAEpay.Card.Void(
{
transactionForeignKey: saleData.foreignId
});
}).then(function (voidData)
{
expect(voidData).to.exist; // jshint ignore:line
expect(voidData.foreignId).to.exist; // jshint ignore:line
done();
}).catch(done);
});
it('should refund a credit card on USAEpay', function (done)
{
USAEpay.Card.Sale(
{
foreignKey: cardForeignId,
amount: 3
}).then(function (saleData)
{
expect(saleData).to.exist; // jshint ignore:line
expect(saleData.foreignId).to.exist; // jshint ignore:line
return USAEpay.Card.Refund(
{
transactionForeignKey: saleData.foreignId
});
}).then(function (refundData)
{
expect(refundData).to.exist; // jshint ignore:line
expect(refundData.foreignId).to.exist; // jshint ignore:line
done();
}).catch(done);
});
});
describe('Terminal Methods', function ()
{
cardForeignId = null;
transactionForeignId = null;
it('should create a terminal on USAEpay', function (done)
{
USAEpay.Terminal.Create(
{
name: 'test'
}).then(function (res)
{
expect(res).to.exist; // jshint ignore:line
expect(res.foreignKey).to.exist; // jshint ignore:line
expect(res.pairingCode).to.exist; // jshint ignore:line
cardForeignId = res.foreignKey;
done();
}).catch(done);
});
it('should start a transaction on a terminal on USAEpay', function (done)
{
USAEpay.Terminal.Sale(
{
foreignKey: cardForeignId,
amount: 1
}).then(function (foreignId)
{
expect(foreignId).to.exist; // jshint ignore:line
transactionForeignId = foreignId;
done();
}).catch(done);
});
it('should get the status of a transaction on a terminal on USAEpay', function (done)
{
var transactionDone = false;
function checkTransactionStatus()
{
if (transactionDone) return done();
USAEpay.Terminal.SaleStatus(
{
foreignKey: transactionForeignId
}).then(function (res)
{
expect(res).to.exist; // jshint ignore:line
expect(res.status).to.exist; // jshint ignore:line
if (res.status === 'error') return done(res.message);
if (res.status === 'success') transactionDone = true;
checkTransactionStatus();
}).catch(done);
}
checkTransactionStatus();
});
it('should delete a terminal on USAEpay', function (done)
{
USAEpay.Terminal.Delete(
{
foreignKey: cardForeignId
}).then(function (result)
{
expect(result).to.equal(true); // jshint ignore:line
done();
}).catch(done);
});
});