Skip to content
Snippets Groups Projects
Commit 209bee01 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Exercise the codepath where token count is specified

parent 95caf7e9
No related branches found
No related tags found
5 merge requests!315update production,!314update production,!313update production,!312update production,!308Accept configuration for the number of tokens issued by the issuer
...@@ -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;
......
...@@ -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)
......
...@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment