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
GitLab 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
f0540c5e
Unverified
Commit
f0540c5e
authored
5 years ago
by
Jean-Paul Calderone
Browse files
Options
Downloads
Patches
Plain Diff
Some tests for the Foolscap-related helpers
parent
455726eb
Branches
Branches containing commit
No related tags found
1 merge request
!91
Better misconfiguration failure
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/_zkapauthorizer/tests/test_foolscap.py
+97
-0
97 additions, 0 deletions
src/_zkapauthorizer/tests/test_foolscap.py
with
97 additions
and
0 deletions
src/_zkapauthorizer/tests/test_foolscap.py
0 → 100644
+
97
−
0
View file @
f0540c5e
# 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 Foolscap-related test helpers.
"""
from
__future__
import
(
absolute_import
,
)
from
testtools
import
(
TestCase
,
)
from
testtools.matchers
import
(
MatchesAll
,
AfterPreprocessing
,
Always
,
IsInstance
,
)
from
foolscap.furl
import
(
decode_furl
,
)
from
foolscap.pb
import
(
Tub
,
)
from
foolscap.referenceable
import
(
RemoteReferenceTracker
,
RemoteReferenceOnly
,
)
from
hypothesis
import
(
given
,
)
from
hypothesis.strategies
import
(
one_of
,
just
,
)
from
.foolscap
import
(
RIStub
,
LocalRemote
,
DummyReferenceable
,
)
def
remote_reference
():
tub
=
Tub
()
tub
.
setLocation
(
"
127.0.0.1:12345
"
)
url
=
tub
.
buildURL
(
b
"
efgh
"
)
# Ugh ugh ugh. Skip over the extra correctness checking in
# RemoteReferenceTracker.__init__ that requires having a broker by passing
# the url as None and setting it after.
tracker
=
RemoteReferenceTracker
(
None
,
None
,
None
,
RIStub
)
tracker
.
url
=
url
ref
=
RemoteReferenceOnly
(
tracker
)
return
ref
class
LocalRemoteTests
(
TestCase
):
"""
Tests for the ``LocalRemote`` test double.
"""
@given
(
ref
=
one_of
(
just
(
remote_reference
()),
just
(
LocalRemote
(
DummyReferenceable
(
RIStub
))),
),
)
def
test_tracker_url
(
self
,
ref
):
"""
The URL of a remote reference can be retrieved using the tracker
attribute.
"""
self
.
assertThat
(
ref
.
tracker
.
getURL
(),
MatchesAll
(
IsInstance
(
bytes
),
AfterPreprocessing
(
decode_furl
,
Always
(),
),
),
)
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