test.js 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. // awesome tests here!
  2. var test = require('tape'); // the reliable testing framework
  3. var setup = require('../setup'); // ensure decache is pre-loaded
  4. var decache = require('../decache.js');
  5. var mymodule = require('../lib/mymodule');
  6. console.log(mymodule.count);
  7. test('Expect decache to do nothing if the module name does not exist', function(t) {
  8. try {
  9. decache('./non-existing-module');
  10. t.pass('No error thrown');
  11. t.end();
  12. } catch (e) {
  13. t.fail('This should have not throw an error');
  14. t.end();
  15. }
  16. });
  17. test('Expect mymodule.count initial state to be false', function(t) {
  18. t.equal(mymodule.get(), false, 'count is false! (we have not run this)');
  19. t.end();
  20. });
  21. test('Increment the value of the count so its 1 (one)', function(t) {
  22. var runcount = mymodule.set();
  23. t.equal(runcount, 1, 'runcount is one! (as expected)');
  24. t.end();
  25. });
  26. test('Increment the value of the count so its 2 (one)', function(t) {
  27. mymodule.set();
  28. var runcount = mymodule.get();
  29. t.equal(runcount, 2, 'runcount is 2!');
  30. t.end();
  31. });
  32. test('There\'s no going back to initial (runcount) state!', function(t) {
  33. var runcount = mymodule.get();
  34. t.equal(runcount, 2, 'runcount cannot be decremented!!');
  35. t.end();
  36. });
  37. test('Delete Require Cache for mymodule to re-set the runcount!', function(t) {
  38. decache('../lib/mymodule'); // exercise the decache module
  39. var other = require('../lib/othermodule.js');
  40. decache('../lib/othermodule.js');
  41. mymodule = require('../lib/mymodule');
  42. var runcount = mymodule.get();
  43. t.equal(runcount, false, 'runcount is false! (as epxected)');
  44. t.end();
  45. });
  46. test('Require an npm (non local) module', function(t) {
  47. var ts = require('tap-spec');
  48. decache('tap-spec');
  49. var keys = Object.keys(require.cache);
  50. t.equal(keys.indexOf('tap-spec'), -1, 'tap-spec no longer in require-cache');
  51. t.end();
  52. });
  53. test('Fake relative parent module', function(t) {
  54. var keys = Object.keys(require.cache);
  55. var p = keys[0]; // the module that required decache
  56. var obj = require.cache[p];
  57. console.log(" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -");
  58. require.cache = {};
  59. require.cache[__filename] = obj;
  60. console.log(require.cache);
  61. var other = require('../lib/othermodule.js');
  62. decache('../lib/othermodule.js');
  63. keys = Object.keys(require.cache);
  64. t.equal(keys.indexOf('othermodule.js'), -1, 'fake parent not in require.cache');
  65. t.end();
  66. });
  67. test('.node extensions are ignored', function(t) {
  68. require('modern-syslog');
  69. decache('modern-syslog');
  70. t.doesNotThrow(function() {
  71. require('modern-syslog');
  72. });
  73. t.end();
  74. });