summaryrefslogtreecommitdiff
path: root/macaroonbakery/tests/test_oven.py
diff options
context:
space:
mode:
Diffstat (limited to 'macaroonbakery/tests/test_oven.py')
-rw-r--r--macaroonbakery/tests/test_oven.py127
1 files changed, 63 insertions, 64 deletions
diff --git a/macaroonbakery/tests/test_oven.py b/macaroonbakery/tests/test_oven.py
index 2976e94..ae235de 100644
--- a/macaroonbakery/tests/test_oven.py
+++ b/macaroonbakery/tests/test_oven.py
@@ -5,7 +5,7 @@ from unittest import TestCase
import copy
from datetime import datetime, timedelta
-import macaroonbakery
+import macaroonbakery as bakery
EPOCH = datetime(1900, 11, 17, 19, 00, 13, 0, None)
AGES = EPOCH + timedelta(days=10)
@@ -15,111 +15,110 @@ class TestOven(TestCase):
def test_canonical_ops(self):
canonical_ops_tests = (
('empty array', [], []),
- ('one element', [macaroonbakery.Op('a', 'a')],
- [macaroonbakery.Op('a', 'a')]),
+ ('one element', [bakery.Op('a', 'a')],
+ [bakery.Op('a', 'a')]),
('all in order',
- [macaroonbakery.Op('a', 'a'), macaroonbakery.Op('a', 'b'),
- macaroonbakery.Op('c', 'c')],
- [macaroonbakery.Op('a', 'a'), macaroonbakery.Op('a', 'b'),
- macaroonbakery.Op('c', 'c')]),
+ [bakery.Op('a', 'a'), bakery.Op('a', 'b'),
+ bakery.Op('c', 'c')],
+ [bakery.Op('a', 'a'), bakery.Op('a', 'b'),
+ bakery.Op('c', 'c')]),
('out of order',
- [macaroonbakery.Op('c', 'c'), macaroonbakery.Op('a', 'b'),
- macaroonbakery.Op('a', 'a')],
- [macaroonbakery.Op('a', 'a'), macaroonbakery.Op('a', 'b'),
- macaroonbakery.Op('c', 'c')]),
+ [bakery.Op('c', 'c'), bakery.Op('a', 'b'),
+ bakery.Op('a', 'a')],
+ [bakery.Op('a', 'a'), bakery.Op('a', 'b'),
+ bakery.Op('c', 'c')]),
('with duplicates',
- [macaroonbakery.Op('c', 'c'), macaroonbakery.Op('a', 'b'),
- macaroonbakery.Op('a', 'a'), macaroonbakery.Op('c', 'a'),
- macaroonbakery.Op('c', 'b'), macaroonbakery.Op('c', 'c'),
- macaroonbakery.Op('a', 'a')],
- [macaroonbakery.Op('a', 'a'), macaroonbakery.Op('a', 'b'),
- macaroonbakery.Op('c', 'a'), macaroonbakery.Op('c', 'b'),
- macaroonbakery.Op('c', 'c')]),
+ [bakery.Op('c', 'c'), bakery.Op('a', 'b'),
+ bakery.Op('a', 'a'), bakery.Op('c', 'a'),
+ bakery.Op('c', 'b'), bakery.Op('c', 'c'),
+ bakery.Op('a', 'a')],
+ [bakery.Op('a', 'a'), bakery.Op('a', 'b'),
+ bakery.Op('c', 'a'), bakery.Op('c', 'b'),
+ bakery.Op('c', 'c')]),
('make sure we\'ve got the fields right',
- [macaroonbakery.Op(entity='read', action='two'),
- macaroonbakery.Op(entity='read', action='one'),
- macaroonbakery.Op(entity='write', action='one')],
- [macaroonbakery.Op(entity='read', action='one'),
- macaroonbakery.Op(entity='read', action='two'),
- macaroonbakery.Op(entity='write', action='one')])
+ [bakery.Op(entity='read', action='two'),
+ bakery.Op(entity='read', action='one'),
+ bakery.Op(entity='write', action='one')],
+ [bakery.Op(entity='read', action='one'),
+ bakery.Op(entity='read', action='two'),
+ bakery.Op(entity='write', action='one')])
)
for about, ops, expected in canonical_ops_tests:
new_ops = copy.copy(ops)
- canonical_ops = macaroonbakery.canonical_ops(new_ops)
+ canonical_ops = bakery.canonical_ops(new_ops)
self.assertEquals(canonical_ops, expected)
# Verify that the original array isn't changed.
self.assertEquals(new_ops, ops)
def test_multiple_ops(self):
- test_oven = macaroonbakery.Oven(
- ops_store=macaroonbakery.MemoryOpsStore())
- ops = [macaroonbakery.Op('one', 'read'),
- macaroonbakery.Op('one', 'write'),
- macaroonbakery.Op('two', 'read')]
- m = test_oven.macaroon(macaroonbakery.LATEST_BAKERY_VERSION, AGES,
+ test_oven = bakery.Oven(
+ ops_store=bakery.MemoryOpsStore())
+ ops = [bakery.Op('one', 'read'),
+ bakery.Op('one', 'write'),
+ bakery.Op('two', 'read')]
+ m = test_oven.macaroon(bakery.LATEST_VERSION, AGES,
None, ops)
got_ops, conds = test_oven.macaroon_ops([m.macaroon])
self.assertEquals(len(conds), 1) # time-before caveat.
- self.assertEquals(macaroonbakery.canonical_ops(got_ops), ops)
+ self.assertEquals(bakery.canonical_ops(got_ops), ops)
def test_multiple_ops_in_id(self):
- test_oven = macaroonbakery.Oven()
- ops = [macaroonbakery.Op('one', 'read'),
- macaroonbakery.Op('one', 'write'),
- macaroonbakery.Op('two', 'read')]
- m = test_oven.macaroon(macaroonbakery.LATEST_BAKERY_VERSION, AGES,
+ test_oven = bakery.Oven()
+ ops = [bakery.Op('one', 'read'),
+ bakery.Op('one', 'write'),
+ bakery.Op('two', 'read')]
+ m = test_oven.macaroon(bakery.LATEST_VERSION, AGES,
None, ops)
got_ops, conds = test_oven.macaroon_ops([m.macaroon])
self.assertEquals(len(conds), 1) # time-before caveat.
- self.assertEquals(macaroonbakery.canonical_ops(got_ops), ops)
+ self.assertEquals(bakery.canonical_ops(got_ops), ops)
def test_multiple_ops_in_id_with_version1(self):
- test_oven = macaroonbakery.Oven()
- ops = [macaroonbakery.Op('one', 'read'),
- macaroonbakery.Op('one', 'write'),
- macaroonbakery.Op('two', 'read')]
- m = test_oven.macaroon(macaroonbakery.BAKERY_V1, AGES, None, ops)
+ test_oven = bakery.Oven()
+ ops = [bakery.Op('one', 'read'),
+ bakery.Op('one', 'write'),
+ bakery.Op('two', 'read')]
+ m = test_oven.macaroon(bakery.VERSION_1, AGES, None, ops)
got_ops, conds = test_oven.macaroon_ops([m.macaroon])
self.assertEquals(len(conds), 1) # time-before caveat.
- self.assertEquals(macaroonbakery.canonical_ops(got_ops), ops)
+ self.assertEquals(bakery.canonical_ops(got_ops), ops)
def test_huge_number_of_ops_gives_small_macaroon(self):
- test_oven = macaroonbakery.Oven(
- ops_store=macaroonbakery.MemoryOpsStore())
+ test_oven = bakery.Oven(
+ ops_store=bakery.MemoryOpsStore())
ops = []
for i in range(30000):
- ops.append(macaroonbakery.Op(entity='entity{}'.format(i),
- action='action{}'.format(i)))
+ ops.append(bakery.Op(entity='entity' + str(i), action='action' + str(i)))
- m = test_oven.macaroon(macaroonbakery.LATEST_BAKERY_VERSION, AGES,
+ m = test_oven.macaroon(bakery.LATEST_VERSION, AGES,
None, ops)
got_ops, conds = test_oven.macaroon_ops([m.macaroon])
self.assertEquals(len(conds), 1) # time-before caveat.
- self.assertEquals(macaroonbakery.canonical_ops(got_ops),
- macaroonbakery.canonical_ops(ops))
+ self.assertEquals(bakery.canonical_ops(got_ops),
+ bakery.canonical_ops(ops))
data = m.serialize_json()
self.assertLess(len(data), 300)
def test_ops_stored_only_once(self):
- st = macaroonbakery.MemoryOpsStore()
- test_oven = macaroonbakery.Oven(ops_store=st)
+ st = bakery.MemoryOpsStore()
+ test_oven = bakery.Oven(ops_store=st)
- ops = [macaroonbakery.Op('one', 'read'),
- macaroonbakery.Op('one', 'write'),
- macaroonbakery.Op('two', 'read')]
+ ops = [bakery.Op('one', 'read'),
+ bakery.Op('one', 'write'),
+ bakery.Op('two', 'read')]
- m = test_oven.macaroon(macaroonbakery.LATEST_BAKERY_VERSION, AGES,
+ m = test_oven.macaroon(bakery.LATEST_VERSION, AGES,
None, ops)
got_ops, conds = test_oven.macaroon_ops([m.macaroon])
- self.assertEquals(macaroonbakery.canonical_ops(got_ops),
- macaroonbakery.canonical_ops(ops))
+ self.assertEquals(bakery.canonical_ops(got_ops),
+ bakery.canonical_ops(ops))
# Make another macaroon containing the same ops in a different order.
- ops = [macaroonbakery.Op('one', 'write'),
- macaroonbakery.Op('one', 'read'),
- macaroonbakery.Op('one', 'read'),
- macaroonbakery.Op('two', 'read')]
- test_oven.macaroon(macaroonbakery.LATEST_BAKERY_VERSION, AGES, None,
+ ops = [bakery.Op('one', 'write'),
+ bakery.Op('one', 'read'),
+ bakery.Op('one', 'read'),
+ bakery.Op('two', 'read')]
+ test_oven.macaroon(bakery.LATEST_VERSION, AGES, None,
ops)
self.assertEquals(len(st._store), 1)