Exemplo n.º 1
0
 def test_is_valid_no_public_key(self):
     # Verify that is_valid only returns true if working with a valid
     # SignedObject
     # test a valid signature
     temp = SignedObject({"TestSignatureDictKey": "test"},
                         "TestSignatureDictKey")
     self.assertFalse(temp.is_valid("invalid"))
Exemplo n.º 2
0
 def test_valid_signature(self):
     signing_key = SigObj.generate_signing_key()
     pub_key = signing.generate_pubkey(signing_key)
     temp = SignedObject({"PublicKey": pub_key})
     # test valid signature
     temp.sign_object(signing_key)
     self.assertTrue(temp.is_valid("valid"))
 def test_serialize(self):
     # Test that serilazation returns the correct dictionary and that
     # it can be retrieved.
     # create SignedObject
     temp = SignedObject({"TestSignatureDictKey": "test"}, "TestSignatureDictKey")
     # serlize SignedObject
     cbor = temp.serialize()
     # check that the unserilized serilized dictinary is the same
     # as before serilazation
     self.assertEqual(cbor2dict(cbor), temp.dump())
 def test_init(self):
     # Trival test creates a SignedObject
     # check that everything initalizes as expected
     signkey = SigObj.generate_signing_key()
     temp = SignedObject({signkey: "test"}, signkey)
     self.assertEquals(temp.SignatureKey, signkey)
     self.assertEquals(temp.dump(), {signkey: "test", "public_key": None})
     self.assertEquals(temp.__repr__(), temp.serialize())
     self.assertIsNotNone(temp.Identifier)
     temp._identifier = None
     self.assertIsNotNone(temp.Identifier)
 def test_serialize(self):
     # Test that serilazation returns the correct dictionary and that
     # it can be retrieved.
     # create SignedObject
     signkey = SigObj.generate_signing_key()
     temp = SignedObject({signkey: "test"}, signkey)
     # serlize SignedObject
     cbor = temp.serialize()
     # check that the unserilized serilized dictinary is the same
     # as before serilazation
     self.assertEquals(cbor2dict(cbor), temp.dump())
Exemplo n.º 6
0
 def test_serialize(self):
     # Test that serilazation returns the correct dictionary and that
     # it can be retrieved.
     # create SignedObject
     signkey = SigObj.generate_signing_key()
     temp = SignedObject({signkey: "test"}, signkey)
     # serlize SignedObject
     cbor = temp.serialize()
     # check that the unserilized serilized dictinary is the same
     # as before serilazation
     self.assertEquals(cbor2dict(cbor), temp.dump())
    def test_is_valid_assertion(self):
        # Test that an AssertionError is raised when dealing with a
        # default SignedObject() because it does not have an signature
        temp2 = SignedObject()
        try:
            # will always print error
            # Does not have a signautre when created with default paramaters
            temp2.verify_signature("unused")
            # should throw an an assertion error, Otherwise fail test
            self.fail("Should have raised an Assertion Error")

        except AssertionError, e:
            self.assertIsInstance(e, AssertionError)
    def test_is_valid(self):
        # Verify that is_valid only returns true if working with a valid
        # Signed Object
        # test a valid signature
        temp = SignedObject({"TestSignatureDictKey": "test"}, "TestSignatureDictKey")
        self.assertTrue(temp.is_valid("unused"))

        # test OriginatorID
        ogid = temp.OriginatorID
        self.assertTrue(temp.verify_signature(ogid))

        # test invalid OriginatorID
        self.assertFalse(temp.verify_signature("invalid"))
    def test_is_valid_assertion(self):
        # Test that an AssertionError is raised when dealing with a
        # default SignedObject() because it does not have an signature
        temp2 = SignedObject()
        try:
            # will always print error
            # Does not have a signautre when created with default paramaters
            temp2.verify_signature("unused")
            # should throw an an assertion error, Otherwise fail test
            self.fail("Should have raised an Assertion Error")

        except AssertionError, e:
            self.assertIsInstance(e, AssertionError)
Exemplo n.º 10
0
    def test_is_valid(self):
        # Verify that is_valid only returns true if working with a valid
        # Signed Object
        # test a valid signature
        signkey = SigObj.generate_signing_key()
        temp = SignedObject({signkey: "test"}, signkey)
        self.assertTrue(temp.is_valid("unused"))

        # test OriginatorID
        ogid = temp.OriginatorID
        self.assertTrue(temp.verify_signature(ogid))

        # test invalid OriginatorID
        self.assertFalse(temp.verify_signature("invalid"))
Exemplo n.º 11
0
    def test_sign_node_assertion(self):
        # Test that an assertion error is thrown when a node is passed
        # that does not have a Signingkey
        # create SignedObject
        temp = SignedObject({"TestSignatureDictKey": "test"}, "TestSignatureDictKey")
        # create a Node that does not have a signingKey
        testNode = Node(name="badNode")
        try:
            # should throw an an assertion error, Otherwise fail test
            temp.sign_from_node(testNode)
            self.fail("Should have raised an Assertion Error")

        except AssertionError, e:
            self.assertIsInstance(e, AssertionError)
Exemplo n.º 12
0
    def test_is_valid(self):
        # Verify that is_valid only returns true if working with a valid
        # Signed Object
        # test a valid signature
        signkey = SigObj.generate_signing_key()
        temp = SignedObject({signkey: "test"}, signkey)
        self.assertTrue(temp.is_valid("unused"))

        # test OriginatorID
        ogid = temp.OriginatorID
        self.assertTrue(temp.verify_signature(ogid))

        # test invalid OriginatorID
        self.assertFalse(temp.verify_signature("invalid"))
Exemplo n.º 13
0
    def test_sign_node_assertion(self):
        # Test that an assertion error is thrown when a node is passed
        # that does not have a Signingkey
        # create SignedObject
        signkey = SigObj.generate_signing_key()
        temp = SignedObject({signkey: "test"}, signkey)
        # create a Node that does not have a signingKey
        testNode = Node(name="badNode")
        try:
            # should throw an an assertion error, Otherwise fail test
            temp.sign_from_node(testNode)
            self.fail("Should have raised an Assertion Error")

        except AssertionError, e:
            self.assertIsInstance(e, AssertionError)
Exemplo n.º 14
0
    def test_signed_node(self):
        # Verify that signed_node and sign_object does not invalidate the
        # signed object and can be returned to original
        # create initial signed object
        temp = SignedObject({"TestSignatureDictKey": "test"}, "TestSignatureDictKey")
        # save origanl OriginatorID before creating node
        idBeforeNode = temp.OriginatorID

        # create a node instance
        key = generate_private_key()
        sigkey = SigObj.generate_signing_key(wifstr=key)
        nodeid = SigObj.generate_identifier(sigkey)
        testNode = Node(name="testNode", signingkey=sigkey, identifier=nodeid)

        temp.sign_from_node(testNode)
        # save new OriginatorID after the
        idAfterNode = temp.OriginatorID

        self.assertNotEqual(idAfterNode, idBeforeNode)
        # check that the signed_object signature is still valid and reset
        # OrignatorId back to original
        self.assertTrue(temp.is_valid("unused parameter"))
        self.assertNotEqual(temp.OriginatorID, idBeforeNode)
Exemplo n.º 15
0
    def test_signed_node(self):
        # Verify that signed_node and sign_object does not invalidate the
        # signed object and can be returned to original
        # create initial signed object
        signkey = SigObj.generate_signing_key()
        temp = SignedObject({signkey: "test"}, signkey)
        # save origanl OriginatorID before creating node
        idBeforeNode = temp.OriginatorID

        # create a node instance
        key = generate_private_key()
        sigkey = SigObj.generate_signing_key(wifstr=key)
        nodeid = SigObj.generate_identifier(sigkey)
        testNode = Node(name="testNode", signingkey=sigkey, identifier=nodeid)

        temp.sign_from_node(testNode)
        # save new OriginatorID after the
        idAfterNode = temp.OriginatorID

        self.assertNotEqual(idAfterNode, idBeforeNode)
        # check that the signed_object signature is still valid and reset
        # OrignatorId back to original
        self.assertTrue(temp.is_valid("unused parameter"))
        self.assertNotEqual(temp.OriginatorID, idBeforeNode)
Exemplo n.º 16
0
 def test_init(self):
     # Trival test creates a SignedObject
     # check that everything initalizes as expected
     temp = SignedObject({"TestSignatureDictKey": "test"}, "TestSignatureDictKey")
     self.assertEqual(temp.SignatureDictKey, "TestSignatureDictKey")
     self.assertEqual(temp.dump(), {"TestSignatureDictKey": "test", "PublicKey": None})
     self.assertEqual(temp.__repr__(), temp.serialize())
     self.assertIsNotNone(temp.Identifier)
     temp._identifier = None
     self.assertIsNotNone(temp.Identifier)
Exemplo n.º 17
0
 def test_init(self):
     # Trival test creates a SignedObject
     # check that everything initalizes as expected
     signkey = SigObj.generate_signing_key()
     temp = SignedObject({signkey: "test"}, signkey)
     self.assertEquals(temp.SignatureKey, signkey)
     self.assertEquals(temp.dump(), {signkey: "test", "public_key": None})
     self.assertEquals(temp.__repr__(), temp.serialize())
     self.assertIsNotNone(temp.Identifier)
     temp._identifier = None
     self.assertIsNotNone(temp.Identifier)