forked from mongodb/node-mongodb-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunicode_test.js
167 lines (152 loc) · 5.84 KB
/
unicode_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
var mongodb = process.env['TEST_NATIVE'] != null ? require('../lib/mongodb').native() : require('../lib/mongodb').pure();
var testCase = require('../deps/nodeunit').testCase,
debug = require('util').debug,
inspect = require('util').inspect,
nodeunit = require('../deps/nodeunit'),
gleak = require('../tools/gleak'),
Db = mongodb.Db,
Cursor = mongodb.Cursor,
Collection = mongodb.Collection,
Server = mongodb.Server;
var MONGODB = 'integration_tests';
var client = new Db(MONGODB, new Server("127.0.0.1", 27017, {auto_reconnect: true, poolSize: 4}), {native_parser: (process.env['TEST_NATIVE'] != null)});
// Define the tests, we want them to run as a nested test so we only clean up the
// db connection once
var tests = testCase({
setUp: function(callback) {
client.open(function(err, db_p) {
if(numberOfTestsRun == Object.keys(tests).length) {
// If first test drop the db
client.dropDatabase(function(err, done) {
callback();
});
} else {
return callback();
}
});
},
tearDown: function(callback) {
numberOfTestsRun = numberOfTestsRun - 1;
// Drop the database and close it
if(numberOfTestsRun <= 0) {
// client.dropDatabase(function(err, done) {
client.close();
callback();
// });
} else {
client.close();
callback();
}
},
shouldCorrectlySaveUnicodeContainingDocument : function(test) {
var doc = {statuses_count: 1687
, created_at: 'Mon Oct 22 14:55:08 +0000 2007'
, description: 'NodeJS hacker, Cofounder of Debuggable, CakePHP core alumnus'
, favourites_count: 6
, profile_sidebar_fill_color: 'EADEAA'
, screen_name: 'felixge'
, status:
{ created_at: 'Fri Mar 12 08:59:44 +0000 2010'
, in_reply_to_screen_name: null
, truncated: false
, in_reply_to_user_id: null
, source: '<a href="http://www.atebits.com/" rel="nofollow">Tweetie</a>'
, favorited: false
, in_reply_to_status_id: null
, id: 10364119169
, text: '#berlin #snow = #fail : ('
}
, contributors_enabled: false
, following: null
, geo_enabled: false
, time_zone: 'Eastern Time (US & Canada)'
, profile_sidebar_border_color: 'D9B17E'
, url: 'http://debuggable.com'
, verified: false
, location: 'Berlin'
, profile_text_color: '333333'
, notifications: null
, profile_background_image_url: 'http://s.twimg.com/a/1268354287/images/themes/theme8/bg.gif'
, protected: false
, profile_link_color: '9D582E'
, followers_count: 840
, name: 'Felix Geisend\u00f6rfer'
, profile_background_tile: false
, id: 9599342
, lang: 'en'
, utc_offset: -18000
, friends_count: 450
, profile_background_color: '8B542B'
, profile_image_url: 'http://a3.twimg.com/profile_images/107142257/passbild-square_normal.jpg'
};
client.createCollection('test_should_correctly_save_unicode_containing_document', function(err, collection) {
doc['_id'] = 'felixge';
collection.save(doc, {safe:true}, function(err, doc) {
collection.findOne(function(err, doc) {
test.equal('felixge', doc._id);
test.done();
});
});
});
},
// Test unicode characters
shouldCorrectlyInsertUnicodeCharacters : function(test) {
client.createCollection('unicode_test_collection', function(err, collection) {
var test_strings = ["ouooueauiOUOOUEAUI", "öüóőúéáűíÖÜÓŐÚÉÁŰÍ", "本荘由利地域に洪水警報"];
collection.insert({id: 0, text: test_strings[0]}, {safe:true}, function(err, ids) {
collection.insert({id: 1, text: test_strings[1]}, {safe:true}, function(err, ids) {
collection.insert({id: 2, text: test_strings[2]}, {safe:true}, function(err, ids) {
collection.find(function(err, cursor) {
cursor.each(function(err, item) {
if(item !== null) {
test.equal(test_strings[item.id], item.text);
} else {
test.done();
}
});
});
});
});
});
});
},
shouldCreateObjectWithChineseObjectName : function(test) {
var object = {'客家话' : 'Hello'};
client.createCollection('create_object_with_chinese_object_name', function(err, r) {
client.collection('create_object_with_chinese_object_name', function(err, collection) {
collection.insert(object, {safe:true}, function(err, result) {
collection.findOne(function(err, item) {
test.equal(object['客家话'], item['客家话'])
collection.find().toArray(function(err, items) {
test.equal(object['客家话'], items[0]['客家话'])
test.done();
})
})
});
})
})
},
shouldCorrectlyHandleUT8KeyNames : function(test) {
client.createCollection('test_utf8_key_name', function(err, collection) {
collection.insert({'šđžčćŠĐŽČĆ':1}, {safe:true}, function(err, ids) {
// finished_test({test_utf8_key_name:'ok'});
collection.find({}, {'fields': ['šđžčćŠĐŽČĆ']}, function(err, cursor) {
cursor.toArray(function(err, items) {
test.equal(1, items[0]['šđžčćŠĐŽČĆ']);
// Let's close the db
test.done();
});
});
});
});
},
noGlobalsLeaked : function(test) {
var leaks = gleak.detectNew();
test.equal(0, leaks.length, "global var leak detected: " + leaks.join(', '));
test.done();
}
})
// Stupid freaking workaround due to there being no way to run setup once for each suite
var numberOfTestsRun = Object.keys(tests).length;
// Assign out tests
module.exports = tests;