mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
In test_metadata_serialization.py "test_case_data" is actually a string when the decorator calls the actual test functions. Signed-off-by: Martin Vrachev <mvrachev@vmware.com>
425 lines
23 KiB
Python
425 lines
23 KiB
Python
# Copyright New York University and the TUF contributors
|
|
# SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
""" Unit tests testing tuf/api/metadata.py classes
|
|
serialization and deserialization.
|
|
|
|
"""
|
|
|
|
import copy
|
|
import json
|
|
import logging
|
|
import sys
|
|
import unittest
|
|
|
|
from tests import utils
|
|
from tuf.api.metadata import (
|
|
DelegatedRole,
|
|
Delegations,
|
|
Key,
|
|
MetaFile,
|
|
Role,
|
|
Root,
|
|
Snapshot,
|
|
TargetFile,
|
|
Targets,
|
|
Timestamp,
|
|
)
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class TestSerialization(unittest.TestCase):
|
|
"""Test serialization for all classes in 'tuf/api/metadata.py'."""
|
|
|
|
# Snapshot instances with meta = {} are valid, but for a full valid
|
|
# repository it's required that meta has at least one element inside it.
|
|
invalid_signed: utils.DataSet = {
|
|
"no _type": '{"spec_version": "1.0.0", "expires": "2030-01-01T00:00:00Z", "meta": {}}',
|
|
"no spec_version": '{"_type": "signed", "version": 1, "expires": "2030-01-01T00:00:00Z", "meta": {}}',
|
|
"no version": '{"_type": "signed", "spec_version": "1.0.0", "expires": "2030-01-01T00:00:00Z", "meta": {}}',
|
|
"no expires": '{"_type": "signed", "spec_version": "1.0.0", "version": 1, "meta": {}}',
|
|
"empty str _type": '{"_type": "", "spec_version": "1.0.0", "version": 1, "expires": "2030-01-01T00:00:00Z", "meta": {}}',
|
|
"empty str spec_version": '{"_type": "signed", "spec_version": "", "version": 1, "expires": "2030-01-01T00:00:00Z", "meta": {}}',
|
|
"_type wrong type": '{"_type": "foo", "spec_version": "1.0.0", "version": 1, "expires": "2030-01-01T00:00:00Z", "meta": {}}',
|
|
"version wrong type": '{"_type": "signed", "spec_version": "1.0.0", "version": "a", "expires": "2030-01-01T00:00:00Z", "meta": {}}',
|
|
"invalid spec_version str": '{"_type": "signed", "spec_version": "abc", "version": 1, "expires": "2030-01-01T00:00:00Z", "meta": {}}',
|
|
"two digit spec_version": '{"_type": "signed", "spec_version": "1.2.a", "version": 1, "expires": "2030-01-01T00:00:00Z", "meta": {}}',
|
|
"no digit spec_version": '{"_type": "signed", "spec_version": "a.b.c", "version": 1, "expires": "2030-01-01T00:00:00Z", "meta": {}}',
|
|
"different major spec_version": '{"_type": "signed", "spec_version": "0.0.0", "version": 1, "expires": "2030-01-01T00:00:00Z", "meta": {}}',
|
|
"version 0": '{"_type": "signed", "spec_version": "1.0.0", "version": 0, "expires": "2030-01-01T00:00:00Z", "meta": {}}',
|
|
"version below 0": '{"_type": "signed", "spec_version": "1.0.0", "version": -1, "expires": "2030-01-01T00:00:00Z", "meta": {}}',
|
|
"wrong datetime string": '{"_type": "signed", "spec_version": "1.0.0", "version": 1, "expires": "abc", "meta": {}}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(invalid_signed)
|
|
def test_invalid_signed_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
with self.assertRaises((KeyError, ValueError, TypeError)):
|
|
Snapshot.from_dict(copy.deepcopy(case_dict))
|
|
|
|
valid_keys: utils.DataSet = {
|
|
"all": '{"keytype": "rsa", "scheme": "rsassa-pss-sha256", \
|
|
"keyval": {"public": "foo"}}',
|
|
"unrecognized field": '{"keytype": "rsa", "scheme": "rsassa-pss-sha256", \
|
|
"keyval": {"public": "foo"}, "foo": "bar"}',
|
|
"unrecognized field in keyval": '{"keytype": "rsa", "scheme": "rsassa-pss-sha256", \
|
|
"keyval": {"public": "foo", "foo": "bar"}}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(valid_keys)
|
|
def test_valid_key_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
key = Key.from_dict("id", copy.copy(case_dict))
|
|
self.assertDictEqual(case_dict, key.to_dict())
|
|
|
|
invalid_keys: utils.DataSet = {
|
|
"no keyid": '{"keytype": "rsa", "scheme": "rsassa-pss-sha256", "keyval": {"public": "abc"}}',
|
|
"no keytype": '{"keyid": "id", "scheme": "rsassa-pss-sha256", "keyval": {"public": "foo"}}',
|
|
"no scheme": '{"keyid": "id", "keytype": "rsa", "keyval": {"public": "foo"}}',
|
|
"no keyval": '{"keyid": "id", "keytype": "rsa", "scheme": "rsassa-pss-sha256"}',
|
|
"keyid wrong type": '{"keyid": 1, "keytype": "rsa", "scheme": "rsassa-pss-sha256", "keyval": {"public": "abc"}}',
|
|
"keytype wrong type": '{"keyid": "id", "keytype": 1, "scheme": "rsassa-pss-sha256", "keyval": {"public": "abc"}}',
|
|
"scheme wrong type": '{"keyid": "id", "keytype": "rsa", "scheme": 1, "keyval": {"public": "abc"}}',
|
|
"keyval wrong type": '{"keyid": "id", "keytype": "rsa", "scheme": "rsassa-pss-sha256", "keyval": 1}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(invalid_keys)
|
|
def test_invalid_key_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
with self.assertRaises((TypeError, KeyError)):
|
|
keyid = case_dict.pop("keyid")
|
|
Key.from_dict(keyid, copy.copy(case_dict))
|
|
|
|
invalid_roles: utils.DataSet = {
|
|
"no threshold": '{"keyids": ["keyid"]}',
|
|
"no keyids": '{"threshold": 3}',
|
|
"wrong threshold type": '{"keyids": ["keyid"], "threshold": "a"}',
|
|
"threshold below 1": '{"keyids": ["keyid"], "threshold": 0}',
|
|
"duplicate keyids": '{"keyids": ["keyid", "keyid"], "threshold": 3}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(invalid_roles)
|
|
def test_invalid_role_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
with self.assertRaises((KeyError, TypeError, ValueError)):
|
|
Role.from_dict(copy.deepcopy(case_dict))
|
|
|
|
valid_roles: utils.DataSet = {
|
|
"all": '{"keyids": ["keyid"], "threshold": 3}',
|
|
"many keyids": '{"keyids": ["a", "b", "c", "d", "e"], "threshold": 1}',
|
|
"empty keyids": '{"keyids": [], "threshold": 1}',
|
|
"unrecognized field": '{"keyids": ["keyid"], "threshold": 3, "foo": "bar"}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(valid_roles)
|
|
def test_role_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
role = Role.from_dict(copy.deepcopy(case_dict))
|
|
self.assertDictEqual(case_dict, role.to_dict())
|
|
|
|
valid_roots: utils.DataSet = {
|
|
"all": '{"_type": "root", "spec_version": "1.0.0", "version": 1, \
|
|
"expires": "2030-01-01T00:00:00Z", "consistent_snapshot": false, \
|
|
"keys": { \
|
|
"keyid1" : {"keytype": "rsa", "scheme": "rsassa-pss-sha256", "keyval": {"public": "foo"}}, \
|
|
"keyid2" : {"keytype": "ed25519", "scheme": "ed25519", "keyval": {"public": "bar"}}}, \
|
|
"roles": { \
|
|
"root": {"keyids": ["keyid1"], "threshold": 1}, \
|
|
"timestamp": {"keyids": ["keyid2"], "threshold": 1}, \
|
|
"targets": {"keyids": ["keyid1"], "threshold": 1}, \
|
|
"snapshot": {"keyids": ["keyid2"], "threshold": 1}} \
|
|
}',
|
|
"no consistent_snapshot": '{ "_type": "root", "spec_version": "1.0.0", "version": 1, \
|
|
"expires": "2030-01-01T00:00:00Z", \
|
|
"keys": {"keyid" : {"keytype": "rsa", "scheme": "rsassa-pss-sha256", "keyval": {"public": "foo"} }}, \
|
|
"roles": { \
|
|
"root": {"keyids": ["keyid"], "threshold": 1}, \
|
|
"timestamp": {"keyids": ["keyid"], "threshold": 1}, \
|
|
"targets": {"keyids": ["keyid"], "threshold": 1}, \
|
|
"snapshot": {"keyids": ["keyid"], "threshold": 1}} \
|
|
}',
|
|
"empty keys": '{"_type": "root", "spec_version": "1.0.0", "version": 1, \
|
|
"expires": "2030-01-01T00:00:00Z", "consistent_snapshot": false, \
|
|
"keys": {}, \
|
|
"roles": { \
|
|
"root": {"keyids": [], "threshold": 1}, \
|
|
"timestamp": {"keyids": [], "threshold": 1}, \
|
|
"targets": {"keyids": [], "threshold": 1}, \
|
|
"snapshot": {"keyids": [], "threshold": 1}} \
|
|
}',
|
|
"unrecognized field": '{"_type": "root", "spec_version": "1.0.0", "version": 1, \
|
|
"expires": "2030-01-01T00:00:00Z", "consistent_snapshot": false, \
|
|
"keys": {"keyid" : {"keytype": "rsa", "scheme": "rsassa-pss-sha256", "keyval": {"public": "foo"}}}, \
|
|
"roles": { \
|
|
"root": {"keyids": ["keyid"], "threshold": 1}, \
|
|
"timestamp": {"keyids": ["keyid"], "threshold": 1}, \
|
|
"targets": {"keyids": ["keyid"], "threshold": 1}, \
|
|
"snapshot": {"keyids": ["keyid"], "threshold": 1} \
|
|
}, \
|
|
"foo": "bar"}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(valid_roots)
|
|
def test_root_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
root = Root.from_dict(copy.deepcopy(case_dict))
|
|
self.assertDictEqual(case_dict, root.to_dict())
|
|
|
|
invalid_roots: utils.DataSet = {
|
|
"invalid role name": '{"_type": "root", "spec_version": "1.0.0", "version": 1, \
|
|
"expires": "2030-01-01T00:00:00Z", "consistent_snapshot": false, \
|
|
"keys": { \
|
|
"keyid1" : {"keytype": "rsa", "scheme": "rsassa-pss-sha256", "keyval": {"public": "foo"}}, \
|
|
"keyid2" : {"keytype": "ed25519", "scheme": "ed25519", "keyval": {"public": "bar"}}}, \
|
|
"roles": { \
|
|
"bar": {"keyids": ["keyid1"], "threshold": 1}, \
|
|
"timestamp": {"keyids": ["keyid2"], "threshold": 1}, \
|
|
"targets": {"keyids": ["keyid1"], "threshold": 1}, \
|
|
"snapshot": {"keyids": ["keyid2"], "threshold": 1}} \
|
|
}',
|
|
"missing root role": '{"_type": "root", "spec_version": "1.0.0", "version": 1, \
|
|
"expires": "2030-01-01T00:00:00Z", "consistent_snapshot": false, \
|
|
"keys": { \
|
|
"keyid1" : {"keytype": "rsa", "scheme": "rsassa-pss-sha256", "keyval": {"public": "foo"}}, \
|
|
"keyid2" : {"keytype": "ed25519", "scheme": "ed25519", "keyval": {"public": "bar"}}}, \
|
|
"roles": { \
|
|
"timestamp": {"keyids": ["keyid2"], "threshold": 1}, \
|
|
"targets": {"keyids": ["keyid1"], "threshold": 1}, \
|
|
"snapshot": {"keyids": ["keyid2"], "threshold": 1}} \
|
|
}',
|
|
"one additional role": '{"_type": "root", "spec_version": "1.0.0", "version": 1, \
|
|
"expires": "2030-01-01T00:00:00Z", "consistent_snapshot": false, \
|
|
"keys": { \
|
|
"keyid1" : {"keytype": "rsa", "scheme": "rsassa-pss-sha256", "keyval": {"public": "foo"}}, \
|
|
"keyid2" : {"keytype": "ed25519", "scheme": "ed25519", "keyval": {"public": "bar"}}}, \
|
|
"roles": { \
|
|
"root": {"keyids": ["keyid1"], "threshold": 1}, \
|
|
"timestamp": {"keyids": ["keyid2"], "threshold": 1}, \
|
|
"targets": {"keyids": ["keyid1"], "threshold": 1}, \
|
|
"snapshot": {"keyids": ["keyid2"], "threshold": 1}, \
|
|
"foo": {"keyids": ["keyid2"], "threshold": 1}} \
|
|
}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(invalid_roots)
|
|
def test_invalid_root_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
with self.assertRaises(ValueError):
|
|
Root.from_dict(copy.deepcopy(case_dict))
|
|
|
|
invalid_metafiles: utils.DataSet = {
|
|
"wrong length type": '{"version": 1, "length": "a", "hashes": {"sha256" : "abc"}}',
|
|
"length 0": '{"version": 1, "length": 0, "hashes": {"sha256" : "abc"}}',
|
|
"length below 0": '{"version": 1, "length": -1, "hashes": {"sha256" : "abc"}}',
|
|
"empty hashes dict": '{"version": 1, "length": 1, "hashes": {}}',
|
|
"hashes wrong type": '{"version": 1, "length": 1, "hashes": 1}',
|
|
"hashes values wrong type": '{"version": 1, "length": 1, "hashes": {"sha256": 1}}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(invalid_metafiles)
|
|
def test_invalid_metafile_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
with self.assertRaises((TypeError, ValueError, AttributeError)):
|
|
MetaFile.from_dict(copy.deepcopy(case_dict))
|
|
|
|
valid_metafiles: utils.DataSet = {
|
|
"all": '{"hashes": {"sha256" : "abc"}, "length": 12, "version": 1}',
|
|
"no length": '{"hashes": {"sha256" : "abc"}, "version": 1 }',
|
|
"no hashes": '{"length": 12, "version": 1}',
|
|
"unrecognized field": '{"hashes": {"sha256" : "abc"}, "length": 12, "version": 1, "foo": "bar"}',
|
|
"many hashes": '{"hashes": {"sha256" : "abc", "sha512": "cde"}, "length": 12, "version": 1}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(valid_metafiles)
|
|
def test_metafile_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
metafile = MetaFile.from_dict(copy.copy(case_dict))
|
|
self.assertDictEqual(case_dict, metafile.to_dict())
|
|
|
|
invalid_timestamps: utils.DataSet = {
|
|
"no metafile": '{ "_type": "timestamp", "spec_version": "1.0.0", "version": 1, "expires": "2030-01-01T00:00:00Z"}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(invalid_timestamps)
|
|
def test_invalid_timestamp_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
with self.assertRaises((ValueError, KeyError)):
|
|
Timestamp.from_dict(copy.deepcopy(case_dict))
|
|
|
|
valid_timestamps: utils.DataSet = {
|
|
"all": '{ "_type": "timestamp", "spec_version": "1.0.0", "version": 1, "expires": "2030-01-01T00:00:00Z", \
|
|
"meta": {"snapshot.json": {"hashes": {"sha256" : "abc"}, "version": 1}}}',
|
|
"unrecognized field": '{ "_type": "timestamp", "spec_version": "1.0.0", "version": 1, "expires": "2030-01-01T00:00:00Z", \
|
|
"meta": {"snapshot.json": {"hashes": {"sha256" : "abc"}, "version": 1}}, "foo": "bar"}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(valid_timestamps)
|
|
def test_timestamp_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
timestamp = Timestamp.from_dict(copy.deepcopy(case_dict))
|
|
self.assertDictEqual(case_dict, timestamp.to_dict())
|
|
|
|
valid_snapshots: utils.DataSet = {
|
|
"all": '{ "_type": "snapshot", "spec_version": "1.0.0", "version": 1, "expires": "2030-01-01T00:00:00Z", \
|
|
"meta": { \
|
|
"file1.txt": {"hashes": {"sha256" : "abc"}, "version": 1}, \
|
|
"file2.txt": {"hashes": {"sha256" : "cde"}, "version": 1} \
|
|
}}',
|
|
"empty meta": '{ "_type": "snapshot", "spec_version": "1.0.0", "version": 1, "expires": "2030-01-01T00:00:00Z", \
|
|
"meta": {} \
|
|
}',
|
|
"unrecognized field": '{ "_type": "snapshot", "spec_version": "1.0.0", "version": 1, "expires": "2030-01-01T00:00:00Z", \
|
|
"meta": { "file.txt": { "hashes": {"sha256" : "abc"}, "version": 1 }}, "foo": "bar"}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(valid_snapshots)
|
|
def test_snapshot_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
snapshot = Snapshot.from_dict(copy.deepcopy(case_dict))
|
|
self.assertDictEqual(case_dict, snapshot.to_dict())
|
|
|
|
valid_delegated_roles: utils.DataSet = {
|
|
# DelegatedRole inherits Role and some use cases can be found in the valid_roles.
|
|
"no hash prefix attribute": '{"keyids": ["keyid"], "name": "a", "paths": ["fn1", "fn2"], \
|
|
"terminating": false, "threshold": 1}',
|
|
"no path attribute": '{"keyids": ["keyid"], "name": "a", "terminating": false, \
|
|
"path_hash_prefixes": ["h1", "h2"], "threshold": 99}',
|
|
"empty paths": '{"keyids": ["keyid"], "name": "a", "paths": [], \
|
|
"terminating": false, "threshold": 1}',
|
|
"empty path_hash_prefixes": '{"keyids": ["keyid"], "name": "a", "terminating": false, \
|
|
"path_hash_prefixes": [], "threshold": 99}',
|
|
"unrecognized field": '{"keyids": ["keyid"], "name": "a", "terminating": true, "paths": ["fn1"], "threshold": 3, "foo": "bar"}',
|
|
"many keyids": '{"keyids": ["keyid1", "keyid2"], "name": "a", "paths": ["fn1", "fn2"], \
|
|
"terminating": false, "threshold": 1}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(valid_delegated_roles)
|
|
def test_delegated_role_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
deserialized_role = DelegatedRole.from_dict(copy.copy(case_dict))
|
|
self.assertDictEqual(case_dict, deserialized_role.to_dict())
|
|
|
|
invalid_delegated_roles: utils.DataSet = {
|
|
# DelegatedRole inherits Role and some use cases can be found in the invalid_roles.
|
|
"missing hash prefixes and paths": '{"name": "a", "keyids": ["keyid"], "threshold": 1, "terminating": false}',
|
|
"both hash prefixes and paths": '{"name": "a", "keyids": ["keyid"], "threshold": 1, "terminating": false, \
|
|
"paths": ["fn1", "fn2"], "path_hash_prefixes": ["h1", "h2"]}',
|
|
"invalid path type": '{"keyids": ["keyid"], "name": "a", "paths": [1,2,3], \
|
|
"terminating": false, "threshold": 1}',
|
|
"invalid path_hash_prefixes type": '{"keyids": ["keyid"], "name": "a", "path_hash_prefixes": [1,2,3], \
|
|
"terminating": false, "threshold": 1}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(invalid_delegated_roles)
|
|
def test_invalid_delegated_role_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
with self.assertRaises(ValueError):
|
|
DelegatedRole.from_dict(copy.copy(case_dict))
|
|
|
|
invalid_delegations: utils.DataSet = {
|
|
"empty delegations": "{}",
|
|
"bad keys": '{"keys": "foo", \
|
|
"roles": [{"keyids": ["keyid"], "name": "a", "paths": ["fn1", "fn2"], "terminating": false, "threshold": 3}]}',
|
|
"bad roles": '{"keys": {"keyid" : {"keytype": "rsa", "scheme": "rsassa-pss-sha256", "keyval": {"public": "foo"}}}, \
|
|
"roles": ["foo"]}',
|
|
"duplicate role names": '{"keys": {"keyid" : {"keytype": "rsa", "scheme": "rsassa-pss-sha256", "keyval": {"public": "foo"}}}, \
|
|
"roles": [ \
|
|
{"keyids": ["keyid"], "name": "a", "paths": ["fn1", "fn2"], "terminating": false, "threshold": 3}, \
|
|
{"keyids": ["keyid2"], "name": "a", "paths": ["fn3"], "terminating": false, "threshold": 2} \
|
|
] \
|
|
}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(invalid_delegations)
|
|
def test_invalid_delegation_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
with self.assertRaises((ValueError, KeyError, AttributeError)):
|
|
Delegations.from_dict(copy.deepcopy(case_dict))
|
|
|
|
valid_delegations: utils.DataSet = {
|
|
"all": '{"keys": { \
|
|
"keyid1" : {"keytype": "rsa", "scheme": "rsassa-pss-sha256", "keyval": {"public": "foo"}}, \
|
|
"keyid2" : {"keytype": "ed25519", "scheme": "ed25519", "keyval": {"public": "bar"}}}, \
|
|
"roles": [ \
|
|
{"keyids": ["keyid"], "name": "a", "terminating": true, "paths": ["fn1"], "threshold": 3}, \
|
|
{"keyids": ["keyid2"], "name": "b", "terminating": true, "paths": ["fn2"], "threshold": 4} ] \
|
|
}',
|
|
"unrecognized field": '{"keys": {"keyid" : {"keytype": "rsa", "scheme": "rsassa-pss-sha256", "keyval": {"public": "foo"}}}, \
|
|
"roles": [ {"keyids": ["keyid"], "name": "a", "paths": ["fn1", "fn2"], "terminating": true, "threshold": 3} ], \
|
|
"foo": "bar"}',
|
|
"empty keys and roles": '{"keys": {}, \
|
|
"roles": [] \
|
|
}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(valid_delegations)
|
|
def test_delegation_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
delegation = Delegations.from_dict(copy.deepcopy(case_dict))
|
|
self.assertDictEqual(case_dict, delegation.to_dict())
|
|
|
|
invalid_targetfiles: utils.DataSet = {
|
|
"no hashes": '{"length": 1}',
|
|
"no length": '{"hashes": {"sha256": "abc"}}'
|
|
# The remaining cases are the same as for invalid_hashes and
|
|
# invalid_length datasets.
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(invalid_targetfiles)
|
|
def test_invalid_targetfile_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
with self.assertRaises(KeyError):
|
|
TargetFile.from_dict(copy.deepcopy(case_dict), "file1.txt")
|
|
|
|
valid_targetfiles: utils.DataSet = {
|
|
"all": '{"length": 12, "hashes": {"sha256" : "abc"}, \
|
|
"custom" : {"foo": "bar"} }',
|
|
"no custom": '{"length": 12, "hashes": {"sha256" : "abc"}}',
|
|
"unrecognized field": '{"length": 12, "hashes": {"sha256" : "abc"}, \
|
|
"custom" : {"foo": "bar"}, "foo": "bar"}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(valid_targetfiles)
|
|
def test_targetfile_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
target_file = TargetFile.from_dict(copy.copy(case_dict), "file1.txt")
|
|
self.assertDictEqual(case_dict, target_file.to_dict())
|
|
|
|
valid_targets: utils.DataSet = {
|
|
"all attributes": '{"_type": "targets", "spec_version": "1.0.0", "version": 1, "expires": "2030-01-01T00:00:00Z", \
|
|
"targets": { \
|
|
"file.txt": {"length": 12, "hashes": {"sha256" : "abc"} }, \
|
|
"file2.txt": {"length": 50, "hashes": {"sha256" : "cde"} } }, \
|
|
"delegations": { \
|
|
"keys": { \
|
|
"keyid" : {"keytype": "rsa", "scheme": "rsassa-pss-sha256", "keyval": {"public": "foo"}}, \
|
|
"keyid2": {"keytype": "ed25519", "scheme": "ed25519", "keyval": {"public": "bar"}}}, \
|
|
"roles": [ \
|
|
{"keyids": ["keyid"], "name": "a", "terminating": true, "paths": ["fn1"], "threshold": 3}, \
|
|
{"keyids": ["keyid2"], "name": "b", "terminating": true, "paths": ["fn2"], "threshold": 4} ] \
|
|
}}',
|
|
"empty targets": '{"_type": "targets", "spec_version": "1.0.0", "version": 1, "expires": "2030-01-01T00:00:00Z", \
|
|
"targets": {}, \
|
|
"delegations": {"keys": {"keyid" : {"keytype": "rsa", \
|
|
"scheme": "rsassa-pss-sha256", "keyval": {"public": "foo"} }}, \
|
|
"roles": [ {"keyids": ["keyid"], "name": "a", "paths": ["fn1", "fn2"], "terminating": true, "threshold": 3} ]} \
|
|
}',
|
|
"no delegations": '{"_type": "targets", "spec_version": "1.0.0", "version": 1, "expires": "2030-01-01T00:00:00Z", \
|
|
"targets": { "file.txt": {"length": 12, "hashes": {"sha256" : "abc"} } } \
|
|
}',
|
|
"unrecognized_field": '{"_type": "targets", "spec_version": "1.0.0", "version": 1, "expires": "2030-01-01T00:00:00Z", \
|
|
"targets": {}, "foo": "bar"}',
|
|
}
|
|
|
|
@utils.run_sub_tests_with_dataset(valid_targets)
|
|
def test_targets_serialization(self, test_case_data: str):
|
|
case_dict = json.loads(test_case_data)
|
|
targets = Targets.from_dict(copy.deepcopy(case_dict))
|
|
self.assertDictEqual(case_dict, targets.to_dict())
|
|
|
|
|
|
# Run unit test.
|
|
if __name__ == "__main__":
|
|
utils.configure_test_logging(sys.argv)
|
|
unittest.main()
|