|
| 1 | +require("./common/bootstrap"); |
| 2 | + |
| 3 | +const Crypto = require("crypto"); |
| 4 | + |
| 5 | +class Component extends Suspendable { |
| 6 | + constructor(options) { |
| 7 | + super(); |
| 8 | + |
| 9 | + var value = null; |
| 10 | + |
| 11 | + this.board = options.board; |
| 12 | + this.io = options.board.io; |
| 13 | + this.pin = options.pin; |
| 14 | + |
| 15 | + this.io.analogRead(this.pin, (data) => { |
| 16 | + value = data; |
| 17 | + this.emit("data", value); |
| 18 | + }); |
| 19 | + |
| 20 | + |
| 21 | + this.tracking = { |
| 22 | + value: { |
| 23 | + get: 0, |
| 24 | + set: 0, |
| 25 | + }, |
| 26 | + unit: { |
| 27 | + get: 0, |
| 28 | + }, |
| 29 | + }; |
| 30 | + |
| 31 | + Object.defineProperties(this, { |
| 32 | + value: { |
| 33 | + get: function() { |
| 34 | + this.tracking.value.get++; |
| 35 | + return value; |
| 36 | + }, |
| 37 | + set: function(input) { |
| 38 | + this.tracking.value.set++; |
| 39 | + value = input; |
| 40 | + }, |
| 41 | + }, |
| 42 | + unit: { |
| 43 | + get: function() { |
| 44 | + this.tracking.unit.get++; |
| 45 | + return value; |
| 46 | + }, |
| 47 | + }, |
| 48 | + }); |
| 49 | + } |
| 50 | +} |
| 51 | + |
| 52 | +exports["Suspendable"] = { |
| 53 | + setUp(done) { |
| 54 | + this.sandbox = sinon.sandbox.create(); |
| 55 | + this.board = newBoard(); |
| 56 | + this.analogRead = this.sandbox.spy(MockFirmata.prototype, "analogRead"); |
| 57 | + this.component = new Component({ |
| 58 | + board: this.board, |
| 59 | + pin: "A0", |
| 60 | + }); |
| 61 | + |
| 62 | + done(); |
| 63 | + }, |
| 64 | + tearDown(done) { |
| 65 | + Board.purge(); |
| 66 | + this.sandbox.restore(); |
| 67 | + done(); |
| 68 | + }, |
| 69 | + |
| 70 | + isInstanceOf(test) { |
| 71 | + test.expect(3); |
| 72 | + test.equal(new Suspendable() instanceof Withinable, true); |
| 73 | + test.equal(this.component instanceof Suspendable, true); |
| 74 | + test.equal(this.component instanceof Withinable, true); |
| 75 | + test.done(); |
| 76 | + }, |
| 77 | + |
| 78 | + pauseIsAFunction(test) { |
| 79 | + test.expect(1); |
| 80 | + const suspendable = new Suspendable(); |
| 81 | + test.equal(typeof suspendable.pause, "function"); |
| 82 | + test.done(); |
| 83 | + }, |
| 84 | + |
| 85 | + resumeIsAFunction(test) { |
| 86 | + test.expect(1); |
| 87 | + const suspendable = new Suspendable(); |
| 88 | + test.equal(typeof suspendable.resume, "function"); |
| 89 | + test.done(); |
| 90 | + }, |
| 91 | + |
| 92 | + suspendability(test) { |
| 93 | + test.expect(5); |
| 94 | + const suspendable = new Suspendable(); |
| 95 | + const expectedBytes = []; |
| 96 | + const emittedBytes = []; |
| 97 | + |
| 98 | + suspendable.on("data", byte => emittedBytes.push(byte)); |
| 99 | + |
| 100 | + let turns = 0; |
| 101 | + let interval = setInterval(() => { |
| 102 | + const byte = Crypto.randomBytes(1); |
| 103 | + turns++; |
| 104 | + suspendable.emit("data", byte); |
| 105 | + |
| 106 | + if (turns === 2) { |
| 107 | + suspendable.pause(); |
| 108 | + } |
| 109 | + |
| 110 | + if (turns === 4) { |
| 111 | + suspendable.resume(); |
| 112 | + } |
| 113 | + |
| 114 | + if (turns <= 2 || turns > 4) { |
| 115 | + expectedBytes.push(byte); |
| 116 | + } |
| 117 | + |
| 118 | + if (turns === 6) { |
| 119 | + test.equal(emittedBytes.length, 4); |
| 120 | + emittedBytes.forEach((b, index) => test.equal(b, expectedBytes[index])); |
| 121 | + clearInterval(interval); |
| 122 | + test.done(); |
| 123 | + } |
| 124 | + }, 5); |
| 125 | + }, |
| 126 | + |
| 127 | + componentSuspendability(test) { |
| 128 | + test.expect(5); |
| 129 | + const analogRead = this.analogRead.lastCall.args[1]; |
| 130 | + const expectedBytes = []; |
| 131 | + const emittedBytes = []; |
| 132 | + |
| 133 | + this.component.on("data", byte => emittedBytes.push(byte)); |
| 134 | + |
| 135 | + let turns = 0; |
| 136 | + let interval = setInterval(() => { |
| 137 | + const byte = Crypto.randomBytes(1); |
| 138 | + turns++; |
| 139 | + analogRead(byte); |
| 140 | + |
| 141 | + if (turns === 2) { |
| 142 | + this.component.pause(); |
| 143 | + } |
| 144 | + |
| 145 | + if (turns === 4) { |
| 146 | + this.component.resume(); |
| 147 | + } |
| 148 | + |
| 149 | + if (turns <= 2 || turns > 4) { |
| 150 | + expectedBytes.push(byte); |
| 151 | + } |
| 152 | + |
| 153 | + if (turns === 6) { |
| 154 | + test.equal(emittedBytes.length, 4); |
| 155 | + emittedBytes.forEach((b, index) => test.equal(b, expectedBytes[index])); |
| 156 | + clearInterval(interval); |
| 157 | + test.done(); |
| 158 | + } |
| 159 | + }, 5); |
| 160 | + }, |
| 161 | + |
| 162 | +}; |
0 commit comments