Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
ZKAPAuthorizer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Administrator
ZKAPAuthorizer
Commits
ab345541
Unverified
Commit
ab345541
authored
4 years ago
by
Jean-Paul Calderone
Browse files
Options
Downloads
Patches
Plain Diff
Just unit test this instead
parent
c08746c7
No related branches found
Branches containing commit
No related tags found
1 merge request
!116
Record redemption public keys
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/_zkapauthorizer/schema.py
+0
-6
0 additions, 6 deletions
src/_zkapauthorizer/schema.py
src/_zkapauthorizer/tests/test_schema.py
+43
-0
43 additions, 0 deletions
src/_zkapauthorizer/tests/test_schema.py
with
43 additions
and
6 deletions
src/_zkapauthorizer/schema.py
+
0
−
6
View file @
ab345541
...
...
@@ -132,9 +132,3 @@ _UPGRADES = {
"""
,
],
}
def
_check_consistency
():
if
_UPGRADES
.
keys
()
!=
range
(
len
(
_UPGRADES
)):
raise
TypeError
(
"
Inconsistent schema versions in schema upgraders.
"
)
_check_consistency
()
This diff is collapsed.
Click to expand it.
src/_zkapauthorizer/tests/test_schema.py
0 → 100644
+
43
−
0
View file @
ab345541
# coding: utf-8
# Copyright 2019 PrivateStorage.io, LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Tests for ``_zkapauthorizer.schema``.
"""
from
__future__
import
(
absolute_import
,
)
from
testtools
import
(
TestCase
,
)
from
testtools.matchers
import
(
Equals
,
)
from
..schema
import
(
_UPGRADES
,
)
class
UpgradeTests
(
TestCase
):
def
test_consistency
(
self
):
"""
Upgrades are defined for every version up to the latest version.
"""
self
.
assertThat
(
list
(
_UPGRADES
.
keys
()),
Equals
(
list
(
range
(
len
(
_UPGRADES
)))),
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment