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
|
if (typeof module !== 'undefined') {
var assert = require('assert');
var sinon = require('sinon');
var faker = require('../lib').faker;
}
describe('database.js', function () {
describe('column()', function () {
it('returns a column name', function () {
sinon.stub(faker.database, 'column').returns('title');
var column = faker.database.column();
var expected = 'title';
assert.strictEqual(
column,
expected,
'The column name should be equals ' +
expected +
'. Current is ' +
column
);
faker.database.column.restore();
});
});
describe('collation()', function () {
it('returns a collation', function () {
sinon.stub(faker.database, 'collation').returns('utf8_bin');
var collation = faker.database.collation();
var expected = 'utf8_bin';
assert.strictEqual(
collation,
expected,
'The collation should be equals ' +
expected +
'. Current is ' +
collation
);
faker.database.collation.restore();
});
});
describe('engine()', function () {
it('returns an engine', function () {
sinon.stub(faker.database, 'engine').returns('InnoDB');
var engine = faker.database.engine();
var expected = 'InnoDB';
assert.strictEqual(
engine,
expected,
'The db engine should be equals ' + expected + '. Current is ' + engine
);
faker.database.engine.restore();
});
});
describe('type()', function () {
it('returns a column type', function () {
sinon.stub(faker.database, 'type').returns('int');
var type = faker.database.type();
var expected = 'int';
assert.strictEqual(
type,
expected,
'The column type should be equals ' + expected + '. Current is ' + type
);
faker.database.type.restore();
});
});
});
|