def test_overrides_trump_ent_cert(self): update_action = RepoUpdateActionCommand() update_action.overrides = {'x': {'gpgcheck': 'blah'}} r = Repo('x', [('gpgcheck', 'original'), ('gpgkey', 'some_key')]) self.assertEqual('original', r['gpgcheck']) update_action._set_override_info(r) self.assertEqual('blah', r['gpgcheck']) self.assertEqual('some_key', r['gpgkey'])
def test_overrides_trump_ent_cert(self): update_action = RepoUpdateActionCommand() update_action.overrides = {"x": {"gpgcheck": "blah"}} r = Repo("x", [("gpgcheck", "original"), ("gpgkey", "some_key")]) self.assertEquals("original", r["gpgcheck"]) update_action._set_override_info(r) self.assertEquals("blah", r["gpgcheck"]) self.assertEquals("some_key", r["gpgkey"])
def test_overrides_trump_ent_cert(self): update_action = RepoUpdateActionCommand() update_action.overrides = [{'contentLabel': 'x', 'name': 'gpgcheck', 'value': 'blah'}] r = Repo('x', [('gpgcheck', 'original'), ('gpgkey', 'some_key')]) self.assertEquals('original', r['gpgcheck']) update_action._set_override_info(r) self.assertEquals('blah', r['gpgcheck']) self.assertEquals('some_key', r['gpgkey'])
def test_overrides_trump_existing(self): update_action = RepoUpdateActionCommand() update_action.overrides = {'x': {'gpgcheck': 'blah'}} values = [('gpgcheck', 'original'), ('gpgkey', 'some_key')] old_repo = Repo('x', values) new_repo = Repo(old_repo.id, values) update_action._set_override_info(new_repo) self.assertEqual('original', old_repo['gpgcheck']) update_action.update_repo(old_repo, new_repo) self.assertEqual('blah', old_repo['gpgcheck']) self.assertEqual('some_key', old_repo['gpgkey'])
def test_overrides_trump_existing(self): update_action = RepoUpdateActionCommand() update_action.overrides = {"x": {"gpgcheck": "blah"}} values = [("gpgcheck", "original"), ("gpgkey", "some_key")] old_repo = Repo("x", values) new_repo = Repo(old_repo.id, values) update_action._set_override_info(new_repo) self.assertEquals("original", old_repo["gpgcheck"]) update_action.update_repo(old_repo, new_repo) self.assertEquals("blah", old_repo["gpgcheck"]) self.assertEquals("some_key", old_repo["gpgkey"])
def test_overrides_removed_and_edited(self): update_action = RepoUpdateActionCommand() update_action.written_overrides.overrides = {'x': {'gpgcheck': 'override_value'}} update_action.overrides = {} old_repo = Repo('x', [('gpgcheck', 'hand_edit'), ('gpgkey', 'some_key')]) new_repo = Repo(old_repo.id, [('gpgcheck', 'original'), ('gpgkey', 'some_key')]) update_action._set_override_info(new_repo) # The value from the current repo file (with the old hand edit) should exist pre-update self.assertEqual('hand_edit', old_repo['gpgcheck']) update_action.update_repo(old_repo, new_repo) # Because the current value doesn't match the override, we don't modify it self.assertEqual('hand_edit', old_repo['gpgcheck']) self.assertEqual('some_key', old_repo['gpgkey'])
def test_overrides_removed_revert_to_default(self): update_action = RepoUpdateActionCommand() update_action.written_overrides.overrides = {'x': {'gpgcheck': 'blah'}} update_action.overrides = {} old_repo = Repo('x', [('gpgcheck', 'blah'), ('gpgkey', 'some_key')]) new_repo = Repo(old_repo.id, [('gpgcheck', 'original'), ('gpgkey', 'some_key')]) update_action._set_override_info(new_repo) # The value from the current repo file (with the old override) should exist pre-update self.assertEqual('blah', old_repo['gpgcheck']) update_action.update_repo(old_repo, new_repo) # Because the override has been removed, the value is reset to the default self.assertEqual('original', old_repo['gpgcheck']) self.assertEqual('some_key', old_repo['gpgkey'])
def test_non_default_override_removed_deleted(self): """ Test that overrides for values that aren't found in Repo.PROPERTIES are removed from redhat.repo once the override is removed """ update_action = RepoUpdateActionCommand() update_action.written_overrides.overrides = {"x": {"somekey": "someval"}} update_action.overrides = {} old_repo = Repo("x", [("somekey", "someval")]) new_repo = Repo(old_repo.id, []) update_action._set_override_info(new_repo) update_action.update_repo(old_repo, new_repo) self.assertFalse("somekey" in old_repo)
def test_non_default_overrides_added_to_existing(self): """ Test that overrides for values that aren't found in Repo.PROPERTIES are written to existing repos """ update_action = RepoUpdateActionCommand() update_action.written_overrides.overrides = {} update_action.overrides = {"x": {"somekey": "someval"}} old_repo = Repo("x", []) new_repo = Repo(old_repo.id, []) update_action._set_override_info(new_repo) update_action.update_repo(old_repo, new_repo) self.assertEquals("someval", old_repo["somekey"])
def test_overrides_removed_and_edited(self): update_action = RepoUpdateActionCommand() update_action.written_overrides.overrides = {"x": {"gpgcheck": "override_value"}} update_action.overrides = {} old_repo = Repo("x", [("gpgcheck", "hand_edit"), ("gpgkey", "some_key")]) new_repo = Repo(old_repo.id, [("gpgcheck", "original"), ("gpgkey", "some_key")]) update_action._set_override_info(new_repo) # The value from the current repo file (with the old hand edit) should exist pre-update self.assertEquals("hand_edit", old_repo["gpgcheck"]) update_action.update_repo(old_repo, new_repo) # Because the current value doesn't match the override, we don't modify it self.assertEquals("hand_edit", old_repo["gpgcheck"]) self.assertEquals("some_key", old_repo["gpgkey"])
def test_overrides_removed_revert_to_default(self): update_action = RepoUpdateActionCommand() update_action.written_overrides.overrides = {"x": {"gpgcheck": "blah"}} update_action.overrides = {} old_repo = Repo("x", [("gpgcheck", "blah"), ("gpgkey", "some_key")]) new_repo = Repo(old_repo.id, [("gpgcheck", "original"), ("gpgkey", "some_key")]) update_action._set_override_info(new_repo) # The value from the current repo file (with the old override) should exist pre-update self.assertEquals("blah", old_repo["gpgcheck"]) update_action.update_repo(old_repo, new_repo) # Because the override has been removed, the value is reset to the default self.assertEquals("original", old_repo["gpgcheck"]) self.assertEquals("some_key", old_repo["gpgkey"])
def test_non_default_override_removed_deleted(self): ''' Test that overrides for values that aren't found in Repo.PROPERTIES are removed from redhat.repo once the override is removed ''' update_action = RepoUpdateActionCommand() update_action.written_overrides.overrides = {'x': {'somekey': 'someval'}} update_action.overrides = {} old_repo = Repo('x', [('somekey', 'someval')]) new_repo = Repo(old_repo.id, []) update_action._set_override_info(new_repo) update_action.update_repo(old_repo, new_repo) self.assertFalse('somekey' in old_repo)
def test_non_default_overrides_added_to_existing(self): ''' Test that overrides for values that aren't found in Repo.PROPERTIES are written to existing repos ''' update_action = RepoUpdateActionCommand() update_action.written_overrides.overrides = {} update_action.overrides = {'x': {'somekey': 'someval'}} old_repo = Repo('x', []) new_repo = Repo(old_repo.id, []) update_action._set_override_info(new_repo) update_action.update_repo(old_repo, new_repo) self.assertEqual('someval', old_repo['somekey'])
def test_non_default_override_removed_deleted(self): ''' Test that overrides for values that aren't found in Repo.PROPERTIES are removed from redhat.repo once the override is removed ''' update_action = RepoUpdateActionCommand() update_action.written_overrides.overrides = { 'x': { 'somekey': 'someval' } } update_action.overrides = {} old_repo = Repo('x', [('somekey', 'someval')]) new_repo = Repo(old_repo.id, []) update_action._set_override_info(new_repo) update_action.update_repo(old_repo, new_repo) self.assertFalse('somekey' in old_repo)