summaryrefslogtreecommitdiff
path: root/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/pathfinder/test/test-storage.js
blob: 14187cd770def20651fa38489ee9525e285c3079 (plain)
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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
'use strict';

const { Loader } = require('sdk/test/loader');
const { before, after } = require('sdk/test/utils');

const { get, set } = require('pathfinder/storage');

exports.testGetNothing = function(assert, done) {
  get().then(function({ data }) {
    assert.equal(data, '', 'the data is blank!');
    done();
  });
};

exports.testSetThenGet = function(assert, done) {
  const randomData = Math.random() + '';

  // SET TO A RANDOM VALUE
  set({ data: randomData }).then(function({ data }) {
    assert.pass('setting was successful');
    assert.equal(data, randomData, 'the data returned from set is correct [' + randomData + ']');
  }, function(e) {
    assert.fail('setting was unsuccessful');
    assert.fail(e);
  }).then(function() get()).then(function({ data }) {
    assert.pass('getting was successful');
    assert.equal(data, randomData, 'the data returned from get is correct [' + randomData + ']');
  }, function(e) {
    assert.fail('getting was unsuccessful');
    assert.fail(e);
  })
  // SET AGAIN
  .then(function() set({ data: 'test' })).then(function({ data }) {
    assert.pass('setting was successful');
    assert.equal(data, 'test', 'the data returned from set is correct [test]');
  }, function(e) {
    assert.fail('setting was unsuccessful');
    assert.fail(e);
  }).then(function() get()).then(function({ data }) {
    assert.pass('getting was successful');
    assert.equal(data, 'test', 'the data returned from get is correct [test]');
  }, function(e) {
    assert.fail('getting was unsuccessful');
    assert.fail(e);
  }).
  // SET TO BLANK
  then(function() set({ data: '' })).then(function({ data }) {
    assert.pass('setting was successful');
    assert.equal(data, '', 'the data returned from set is correct');
  }, function(e) {
    assert.fail('setting was unsuccessful');
    assert.fail(e);
  }).then(function() get()).then(function({ data }) {
    assert.pass('getting was successful');
    assert.equal(data, '', 'the data returned from get is correct');
  }, function(e) {
    assert.fail('getting was unsuccessful');
    assert.fail(e);
  }).
  // SET TO BLANK AGAIN
  then(function() set({ data: '' })).then(function({ data }) {
    assert.pass('setting was successful');
    assert.equal(data, '', 'the data returned from set is correct');
  }, function(e) {
    assert.fail('setting was unsuccessful');
    assert.fail(e);
  }).then(function() get()).then(function({ data }) {
    assert.pass('getting was successful');
    assert.equal(data, '', 'the data returned from get is correct');
  }, function(e) {
    assert.fail('getting was unsuccessful');
    assert.fail(e);
  }).then(done, assert.fail);
};

exports.testSettingJSON = function(assert, done) {
  const json = JSON.stringify({
    num: 1,
    str: 'string',
    bool: true,
    obj: { x: 'x' },
    ary: [ 1, 2, 3 ]
  });

  set({ data: json }).then(function({ data }) {
    assert.pass('setting was successful');
    assert.equal(data, json, 'the data returned from set is correct json');
  }, function(e) {
    assert.fail('setting was unsuccessful');
    assert.fail(e);
  }).then(function() get()).then(function({ data }) {
    assert.pass('getting was successful');
    assert.equal(data, json, 'the data returned from get is correct json');
  }, function(e) {
    assert.fail('getting was unsuccessful');
    assert.fail(e);
  }).
  // SET TO BLANK AGAIN
  then(function() set({ data: '' })).then(function({ data }) {
    assert.pass('setting was successful');
    assert.equal(data, '', 'the data returned from set is correct');
  }, function(e) {
    assert.fail('setting was unsuccessful');
    assert.fail(e);
  }).then(function() get()).then(function({ data }) {
    assert.pass('getting was successful');
    assert.equal(data, '', 'the data returned from get is correct');
  }, function(e) {
    assert.fail('getting was unsuccessful');
    assert.fail(e);
  }).then(done, assert.fail);
};

before(exports, function(name, assert, done) {
  let loader = Loader(module);
  loader.require('pathfinder/storage');
  let file = loader.sandbox('pathfinder/storage').getStorageFile();
  assert.pass(file.exists(), false, 'the storage file DNE');
  loader.unload();
  done();
});
after(exports, function(name, assert, done) {
  let loader = Loader(module);
  loader.require('pathfinder/storage');
  let file = loader.sandbox('pathfinder/storage').getStorageFile();
  assert.pass(file.exists(), false, 'the storage file DNE');
  loader.unload();
  done();
});

require('sdk/test').run(exports);