Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PrivateStorageio
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
Show more breadcrumbs
PrivateStorage
PrivateStorageio
Commits
209bee01
Commit
209bee01
authored
2 years ago
by
Jean-Paul Calderone
Browse files
Options
Downloads
Patches
Plain Diff
Exercise the codepath where token count is specified
parent
95caf7e9
No related branches found
Branches containing commit
No related tags found
5 merge requests
!315
update production
,
!314
update production
,
!313
update production
,
!312
update production
,
!308
Accept configuration for the number of tokens issued by the issuer
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
nixos/tests/private-storage.nix
+3
-2
3 additions, 2 deletions
nixos/tests/private-storage.nix
nixos/tests/run-client.py
+2
-5
2 additions, 5 deletions
nixos/tests/run-client.py
nixos/tests/test_privatestorage.py
+2
-1
2 additions, 1 deletion
nixos/tests/test_privatestorage.py
with
7 additions
and
8 deletions
nixos/tests/private-storage.nix
+
3
−
2
View file @
209bee01
...
@@ -19,6 +19,7 @@ let
...
@@ -19,6 +19,7 @@ let
issuerURL
=
"http://issuer/"
;
issuerURL
=
"http://issuer/"
;
voucher
=
"xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxy"
;
voucher
=
"xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxy"
;
tokenCount
=
1000
;
# The issuer's signing key. Notionally, this is a secret key. This is only
# The issuer's signing key. Notionally, this is a secret key. This is only
# the value for this system test though so I don't care if it leaks to the
# the value for this system test though so I don't care if it leaks to the
...
@@ -117,6 +118,7 @@ in {
...
@@ -117,6 +118,7 @@ in {
tls
=
false
;
tls
=
false
;
issuer
=
"Ristretto"
;
issuer
=
"Ristretto"
;
inherit
ristrettoSigningKeyPath
;
inherit
ristrettoSigningKeyPath
;
tokensPerVoucher
=
tokenCount
;
letsEncryptAdminEmail
=
"user@example.invalid"
;
letsEncryptAdminEmail
=
"user@example.invalid"
;
allowedChargeOrigins
=
[
"http://unused.invalid"
];
allowedChargeOrigins
=
[
"http://unused.invalid"
];
...
@@ -157,8 +159,7 @@ in {
...
@@ -157,8 +159,7 @@ in {
testScript
=
ourpkgs
.
lib
.
testing
.
makeTestScript
{
testScript
=
ourpkgs
.
lib
.
testing
.
makeTestScript
{
testpath
=
./test_privatestorage.py
;
testpath
=
./test_privatestorage.py
;
kwargs
=
{
kwargs
=
{
inherit
sshPrivateKeyFile
pemFile
introducerPort
introducerFURL
issuerURL
ristrettoPublicKey
voucher
;
inherit
sshPrivateKeyFile
pemFile
introducerPort
introducerFURL
issuerURL
ristrettoPublicKey
voucher
tokenCount
;
# Supply some helper programs to help the tests stay a bit higher level.
# Supply some helper programs to help the tests stay a bit higher level.
run_introducer
=
./run-introducer.py
;
run_introducer
=
./run-introducer.py
;
run_client
=
./run-client.py
;
run_client
=
./run-client.py
;
...
...
This diff is collapsed.
Click to expand it.
nixos/tests/run-client.py
+
2
−
5
View file @
209bee01
...
@@ -12,7 +12,7 @@ from subprocess import check_output
...
@@ -12,7 +12,7 @@ from subprocess import check_output
from
configparser
import
ConfigParser
from
configparser
import
ConfigParser
def
main
():
def
main
():
(
nodePath
,
introducerFURL
,
issuerURL
,
publicKey
)
=
argv
[
1
:]
(
nodePath
,
introducerFURL
,
issuerURL
,
publicKey
,
tokenCount
)
=
argv
[
1
:]
run
([
"
tahoe
"
,
"
--version
"
])
run
([
"
tahoe
"
,
"
--version
"
])
run
([
run
([
...
@@ -34,10 +34,7 @@ def main():
...
@@ -34,10 +34,7 @@ def main():
config
.
set
(
u
"
storageclient.plugins.privatestorageio-zkapauthz-v1
"
,
u
"
redeemer
"
,
u
"
ristretto
"
)
config
.
set
(
u
"
storageclient.plugins.privatestorageio-zkapauthz-v1
"
,
u
"
redeemer
"
,
u
"
ristretto
"
)
config
.
set
(
u
"
storageclient.plugins.privatestorageio-zkapauthz-v1
"
,
u
"
ristretto-issuer-root-url
"
,
issuerURL
)
config
.
set
(
u
"
storageclient.plugins.privatestorageio-zkapauthz-v1
"
,
u
"
ristretto-issuer-root-url
"
,
issuerURL
)
config
.
set
(
u
"
storageclient.plugins.privatestorageio-zkapauthz-v1
"
,
u
"
allowed-public-keys
"
,
publicKey
)
config
.
set
(
u
"
storageclient.plugins.privatestorageio-zkapauthz-v1
"
,
u
"
allowed-public-keys
"
,
publicKey
)
# This has to agree with the PaymentServer configuration at the configured
config
.
set
(
u
"
storageclient.plugins.privatestorageio-zkapauthz-v1
"
,
u
"
default-token-count
"
,
tokenCount
)
# issuer location. Presently PaymentServer has 50000 hard-coded as the
# correct value.
config
.
set
(
u
"
storageclient.plugins.privatestorageio-zkapauthz-v1
"
,
u
"
default-token-count
"
,
u
"
50000
"
)
with
open
(
"
/tmp/client/tahoe.cfg
"
,
"
wt
"
)
as
cfg
:
with
open
(
"
/tmp/client/tahoe.cfg
"
,
"
wt
"
)
as
cfg
:
config
.
write
(
cfg
)
config
.
write
(
cfg
)
...
...
This diff is collapsed.
Click to expand it.
nixos/tests/test_privatestorage.py
+
2
−
1
View file @
209bee01
...
@@ -37,6 +37,7 @@ def test(
...
@@ -37,6 +37,7 @@ def test(
issuerURL
,
issuerURL
,
ristrettoPublicKey
,
ristrettoPublicKey
,
voucher
,
voucher
,
tokenCount
,
):
):
"""
"""
"""
"""
...
@@ -95,7 +96,7 @@ def test(
...
@@ -95,7 +96,7 @@ def test(
#
#
# Storage appears to be working so try to get a client to speak with it.
# Storage appears to be working so try to get a client to speak with it.
#
#
runOnNode
(
client
,
[
run_client
,
"
/tmp/client
"
,
introducerFURL
,
issuerURL
,
ristrettoPublicKey
])
runOnNode
(
client
,
[
run_client
,
"
/tmp/client
"
,
introducerFURL
,
issuerURL
,
ristrettoPublicKey
,
str
(
tokenCount
)
])
client
.
wait_for_open_port
(
3456
)
client
.
wait_for_open_port
(
3456
)
# Make sure the fake Stripe API server is ready for requests.
# Make sure the fake Stripe API server is ready for requests.
...
...
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