/test/vows-test.js

https://github.com/smh/vows · JavaScript · 374 lines · 357 code · 17 blank · 0 comment · 0 complexity · 93468c4fe69650d764f464946a6ef873 MD5 · raw file

  1. var path = require('path'),
  2. events = require('events'),
  3. assert = require('assert'),
  4. fs = require('fs'),
  5. vows = require('../lib/vows');
  6. var api = vows.prepare({
  7. get: function (id, callback) {
  8. process.nextTick(function () { callback(null, id) });
  9. },
  10. version: function () { return '1.0' }
  11. }, ['get']);
  12. var promiser = function (val) {
  13. return function () {
  14. var promise = new(events.EventEmitter);
  15. process.nextTick(function () { promise.emit('success', val) });
  16. return promise;
  17. }
  18. };
  19. vows.describe("Vows").addBatch({
  20. "A context": {
  21. topic: promiser("hello world"),
  22. "with a nested context": {
  23. topic: function (parent) {
  24. this.state = 42;
  25. return promiser(parent)();
  26. },
  27. "has access to the environment": function () {
  28. assert.equal(this.state, 42);
  29. },
  30. "and a sub nested context": {
  31. topic: function () {
  32. return this.state;
  33. },
  34. "has access to the parent environment": function (r) {
  35. assert.equal(r, 42);
  36. assert.equal(this.state, 42);
  37. },
  38. "has access to the parent context object": function (r) {
  39. assert.ok(Array.isArray(this.context.topics));
  40. assert.include(this.context.topics, "hello world");
  41. }
  42. }
  43. }
  44. },
  45. "A nested context": {
  46. topic: promiser(1),
  47. ".": {
  48. topic: function (a) { return promiser(2)() },
  49. ".": {
  50. topic: function (b, a) { return promiser(3)() },
  51. ".": {
  52. topic: function (c, b, a) { return promiser([4, c, b, a])() },
  53. "should have access to the parent topics": function (topics) {
  54. assert.equal(topics.join(), [4, 3, 2, 1].join());
  55. }
  56. },
  57. "from": {
  58. topic: function (c, b, a) { return promiser([4, c, b, a])() },
  59. "the parent topics": function(topics) {
  60. assert.equal(topics.join(), [4, 3, 2, 1].join());
  61. }
  62. }
  63. }
  64. }
  65. },
  66. "Nested contexts with callback-style async": {
  67. topic: function () {
  68. fs.stat(__dirname + '/vows-test.js', this.callback);
  69. },
  70. 'after a successful `fs.stat`': {
  71. topic: function (stat) {
  72. fs.open(__dirname + '/vows-test.js', "r", stat.mode, this.callback);
  73. },
  74. 'after a successful `fs.open`': {
  75. topic: function (fd, stat) {
  76. fs.read(fd, stat.size, 0, "utf8", this.callback);
  77. },
  78. 'after a successful `fs.read`': function (data) {
  79. assert.match (data, /after a successful `fs.read`/);
  80. }
  81. }
  82. }
  83. },
  84. "A nested context with no topics": {
  85. topic: 45,
  86. ".": {
  87. ".": {
  88. "should pass the value down": function (topic) {
  89. assert.equal(topic, 45);
  90. }
  91. }
  92. }
  93. },
  94. "A Nested context with topic gaps": {
  95. topic: 45,
  96. ".": {
  97. ".": {
  98. topic: 101,
  99. ".": {
  100. ".": {
  101. topic: function (prev, prev2) {
  102. return this.context.topics.slice(0);
  103. },
  104. "should pass the topics down": function (topics) {
  105. assert.length(topics, 2);
  106. assert.equal(topics[0], 101);
  107. assert.equal(topics[1], 45);
  108. }
  109. }
  110. }
  111. }
  112. }
  113. },
  114. "A non-promise return value": {
  115. topic: function () { return 1 },
  116. "should be converted to a promise": function (val) {
  117. assert.equal(val, 1);
  118. }
  119. },
  120. "A 'prepared' interface": {
  121. "with a wrapped function": {
  122. topic: function () { return api.get(42) },
  123. "should work as expected": function (val) {
  124. assert.equal(val, 42);
  125. }
  126. },
  127. "with a non-wrapped function": {
  128. topic: function () { return api.version() },
  129. "should work as expected": function (val) {
  130. assert.equal(val, '1.0');
  131. }
  132. }
  133. },
  134. "A non-function topic": {
  135. topic: 45,
  136. "should work as expected": function (topic) {
  137. assert.equal(topic, 45);
  138. }
  139. },
  140. "A non-function topic with a falsy value": {
  141. topic: 0,
  142. "should work as expected": function (topic) {
  143. assert.equal(topic, 0);
  144. }
  145. },
  146. "A topic returning a function": {
  147. topic: function () {
  148. return function () { return 42 };
  149. },
  150. "should work as expected": function (topic) {
  151. assert.isFunction(topic);
  152. assert.equal(topic(), 42);
  153. },
  154. "in a sub-context": {
  155. "should work as expected": function (topic) {
  156. assert.isFunction(topic);
  157. assert.equal(topic(), 42);
  158. },
  159. }
  160. },
  161. "A topic emitting an error": {
  162. topic: function () {
  163. var promise = new(events.EventEmitter);
  164. process.nextTick(function () {
  165. promise.emit("error", 404);
  166. });
  167. return promise;
  168. },
  169. "shouldn't raise an exception if the test expects it": function (e, res) {
  170. assert.equal(e, 404);
  171. assert.ok(! res);
  172. }
  173. },
  174. "A topic not emitting an error": {
  175. topic: function () {
  176. var promise = new(events.EventEmitter);
  177. process.nextTick(function () {
  178. promise.emit("success", true);
  179. });
  180. return promise;
  181. },
  182. "should pass `null` as first argument, if the test is expecting an error": function (e, res) {
  183. assert.strictEqual(e, null);
  184. assert.equal(res, true);
  185. },
  186. "should pass the result as first argument if the test isn't expecting an error": function (res) {
  187. assert.equal(res, true);
  188. }
  189. },
  190. "A topic with callback-style async": {
  191. "when successful": {
  192. topic: function () {
  193. var that = this;
  194. process.nextTick(function () {
  195. that.callback(null, "OK");
  196. });
  197. },
  198. "should work like an event-emitter": function (res) {
  199. assert.equal(res, "OK");
  200. },
  201. "should assign `null` to the error argument": function (e, res) {
  202. assert.strictEqual(e, null);
  203. assert.equal(res, "OK");
  204. }
  205. },
  206. "when unsuccessful": {
  207. topic: function () {
  208. function async(callback) {
  209. process.nextTick(function () {
  210. callback("ERROR");
  211. });
  212. }
  213. async(this.callback);
  214. },
  215. "should have a non-null error value": function (e, res) {
  216. assert.equal(e, "ERROR");
  217. },
  218. "should work like an event-emitter": function (e, res) {
  219. assert.equal(res, undefined);
  220. }
  221. },
  222. "using this.callback synchronously": {
  223. topic: function () {
  224. this.callback(null, 'hello');
  225. },
  226. "should work the same as returning a value": function (res) {
  227. assert.equal(res, 'hello');
  228. }
  229. },
  230. "using this.callback with a user context": {
  231. topic: function () {
  232. this.callback.call({ boo: true }, null, 'hello');
  233. },
  234. "should give access to the user context": function (res) {
  235. assert.isTrue(this.boo);
  236. }
  237. },
  238. "passing this.callback to a function": {
  239. topic: function () {
  240. this.boo = true;
  241. var async = function (callback) {
  242. callback(null);
  243. };
  244. async(this.callback);
  245. },
  246. "should give access to the topic context": function () {
  247. assert.isTrue(this.boo);
  248. }
  249. },
  250. "with multiple arguments": {
  251. topic: function () {
  252. this.callback(null, 1, 2, 3);
  253. },
  254. "should pass them to the vow": function (e, a, b, c) {
  255. assert.strictEqual(e, null);
  256. assert.strictEqual(a, 1);
  257. assert.strictEqual(b, 2);
  258. assert.strictEqual(c, 3);
  259. },
  260. "and a sub-topic": {
  261. topic: function (a, b, c) {
  262. return [a, b, c];
  263. },
  264. "should receive them too": function (val) {
  265. assert.deepEqual(val, [1, 2, 3]);
  266. }
  267. }
  268. }
  269. }
  270. }).addBatch({
  271. "A Sibling context": {
  272. "'A', with `this.foo = true`": {
  273. topic: function () {
  274. this.foo = true;
  275. return this;
  276. },
  277. "should have `this.foo` set to true": function (res) {
  278. assert.equal(res.foo, true);
  279. }
  280. },
  281. "'B', with nothing set": {
  282. topic: function () {
  283. return this;
  284. },
  285. "shouldn't have access to `this.foo`": function (e, res) {
  286. assert.isUndefined(res.foo);
  287. }
  288. }
  289. }
  290. }).addBatch({
  291. "A 2nd batch": {
  292. topic: function () {
  293. var p = new(events.EventEmitter);
  294. setTimeout(function () {
  295. p.emit("success");
  296. }, 100);
  297. return p;
  298. },
  299. "should run after the first": function () {}
  300. }
  301. }).addBatch({
  302. "A 3rd batch": {
  303. topic: true, "should run last": function () {}
  304. }
  305. }).addBatch({}).export(module);
  306. vows.describe("Vows with a single batch", {
  307. "This is a batch that's added as the optional parameter to describe()": {
  308. topic: true,
  309. "And a vow": function () {}
  310. }
  311. }).export(module);
  312. vows.describe("Vows with multiple batches added as optional parameters", {
  313. "First batch": {
  314. topic: true,
  315. "should be run first": function () {}
  316. }
  317. }, {
  318. "Second batch": {
  319. topic: true,
  320. "should be run second": function () {}
  321. }
  322. }).export(module);
  323. vows.describe("Vows with teardowns").addBatch({
  324. "A context": {
  325. topic: function () {
  326. return { flag: true };
  327. },
  328. "And a vow": function (topic) {
  329. assert.isTrue(topic.flag);
  330. },
  331. "And another vow": function (topic) {
  332. assert.isTrue(topic.flag);
  333. },
  334. "And a final vow": function (topic) {
  335. assert.isTrue(topic.flag);
  336. },
  337. 'subcontext': {
  338. 'nested': function (_, topic) {
  339. assert.isTrue(topic.flag);
  340. }
  341. },
  342. teardown: function (topic) {
  343. topic.flag = false;
  344. },
  345. "with a subcontext" : {
  346. topic: function (topic) {
  347. var that = this;
  348. process.nextTick(function () {
  349. that.callback(null, topic);
  350. });
  351. },
  352. "Waits for the subcontext before teardown" : function(topic) {
  353. assert.isTrue(topic.flag);
  354. }
  355. }
  356. }
  357. }).export(module);