summaryrefslogtreecommitdiff
path: root/tests/components/wallet.py
blob: bfdbd9ba1c198320700cc827a8dcddf1b160a666 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import json
import os
from subprocess import run


class Wallet:

    def __init__(self, config):
        self.db = os.path.join(config.tmpdir, "wallet-db.json")
        self.arg_db = "--wallet-db=%s" % self.db
        self.log_path = os.path.join(config.tmpdir, "wallet.log")

    def cmd(self, command, request=None):
        if request is None:
            request = dict()
        request = json.dumps(request)
        r = run(["taler-wallet-cli", self.arg_db, "api", command, request],
                timeout=10, text=True, capture_output=True)
        self.write_to_log(r.stderr)
        if r.returncode != 0:
            print(r)
        assert r.returncode == 0
        json_r = json.loads(r.stdout)
        if json_r["type"] != "response" or "result" not in json_r:
            print(json_r)
        assert json_r["type"] == "response"
        return json_r["result"]

    def testing_withdraw(self, amount, exchange_url, bank_url):
        r = run(["taler-wallet-cli", self.arg_db, "--no-throttle", "testing", "withdraw",
                 "-a", amount,
                 "-e", exchange_url,
                 "-b", bank_url
                 ], timeout=10, check=True, text=True, capture_output=True)
        self.write_to_log(r.stderr)

    def run_pending(self):
        r = run(["taler-wallet-cli", self.arg_db, "run-pending"],
                timeout=10, check=True, text=True, capture_output=True)
        self.write_to_log(r.stderr)
        return r.stdout.rstrip()

    def run_until_done(self):
        r = run(["taler-wallet-cli", self.arg_db, "run-until-done"],
                timeout=10, check=True, text=True, capture_output=True)
        self.write_to_log(r.stderr)
        return r.stdout.rstrip()

    def write_to_log(self, data):
        with open(self.log_path, "a") as f:
            f.write(data)