-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1666 from endojs/markm-revocables
feat(exo): revocables
- Loading branch information
Showing
2 changed files
with
168 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
// eslint-disable-next-line import/order | ||
import { test } from './prepare-test-env-ava.js'; | ||
|
||
// eslint-disable-next-line import/order | ||
import { M } from '@endo/patterns'; | ||
import { defineExoClass, defineExoClassKit } from '../src/exo-makers.js'; | ||
|
||
const { apply } = Reflect; | ||
|
||
const UpCounterI = M.interface('UpCounter', { | ||
incr: M.call() | ||
// TODO M.number() should not be needed to get a better error message | ||
.optional(M.and(M.number(), M.gte(0))) | ||
.returns(M.number()), | ||
}); | ||
|
||
const DownCounterI = M.interface('DownCounter', { | ||
decr: M.call() | ||
// TODO M.number() should not be needed to get a better error message | ||
.optional(M.and(M.number(), M.gte(0))) | ||
.returns(M.number()), | ||
}); | ||
|
||
test('test revoke defineExoClass', t => { | ||
let revoke; | ||
const makeUpCounter = defineExoClass( | ||
'UpCounter', | ||
UpCounterI, | ||
/** @param {number} x */ | ||
(x = 0) => ({ x }), | ||
{ | ||
incr(y = 1) { | ||
const { state } = this; | ||
state.x += y; | ||
return state.x; | ||
}, | ||
}, | ||
{ | ||
receiveRevoker(r) { | ||
revoke = r; | ||
}, | ||
}, | ||
); | ||
const upCounter = makeUpCounter(3); | ||
t.is(upCounter.incr(5), 8); | ||
t.is(revoke(upCounter), true); | ||
t.throws(() => upCounter.incr(1), { | ||
message: | ||
'"In \\"incr\\" method of (UpCounter)" may only be applied to a valid instance: "[Alleged: UpCounter]"', | ||
}); | ||
}); | ||
|
||
test('test revoke defineExoClassKit', t => { | ||
let revoke; | ||
const makeCounterKit = defineExoClassKit( | ||
'Counter', | ||
{ up: UpCounterI, down: DownCounterI }, | ||
/** @param {number} x */ | ||
(x = 0) => ({ x }), | ||
{ | ||
up: { | ||
incr(y = 1) { | ||
const { state } = this; | ||
state.x += y; | ||
return state.x; | ||
}, | ||
}, | ||
down: { | ||
decr(y = 1) { | ||
const { state } = this; | ||
state.x -= y; | ||
return state.x; | ||
}, | ||
}, | ||
}, | ||
{ | ||
receiveRevoker(r) { | ||
revoke = r; | ||
}, | ||
}, | ||
); | ||
const { up: upCounter, down: downCounter } = makeCounterKit(3); | ||
t.is(upCounter.incr(5), 8); | ||
t.is(downCounter.decr(), 7); | ||
t.is(revoke(upCounter), true); | ||
t.is(revoke(upCounter), false); | ||
t.throws(() => upCounter.incr(3), { | ||
message: | ||
'"In \\"incr\\" method of (Counter up)" may only be applied to a valid instance: "[Alleged: Counter up]"', | ||
}); | ||
t.is(revoke(downCounter), true); | ||
t.is(revoke(downCounter), false); | ||
t.throws(() => downCounter.decr(), { | ||
message: | ||
'"In \\"decr\\" method of (Counter down)" may only be applied to a valid instance: "[Alleged: Counter down]"', | ||
}); | ||
}); | ||
|
||
test('test facet cross-talk', t => { | ||
const makeCounterKit = defineExoClassKit( | ||
'Counter', | ||
{ up: UpCounterI, down: DownCounterI }, | ||
/** @param {number} x */ | ||
(x = 0) => ({ x }), | ||
{ | ||
up: { | ||
incr(y = 1) { | ||
const { state } = this; | ||
state.x += y; | ||
return state.x; | ||
}, | ||
}, | ||
down: { | ||
decr(y = 1) { | ||
const { state } = this; | ||
state.x -= y; | ||
return state.x; | ||
}, | ||
}, | ||
}, | ||
); | ||
const { up: upCounter, down: downCounter } = makeCounterKit(3); | ||
t.throws(() => apply(upCounter.incr, downCounter, [2]), { | ||
message: | ||
'"In \\"incr\\" method of (Counter up)" may only be applied to a valid instance: "[Alleged: Counter down]"', | ||
}); | ||
}); |