summaryrefslogtreecommitdiff
path: root/taler-wallet.rst
blob: 4a975340379ab413d87a06eb89398d6b14664988 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
..
  This file is part of GNU TALER.
  Copyright (C) 2014-2024 Taler Systems SA

  TALER is free software; you can redistribute it and/or modify it under the
  terms of the GNU Affero General Public License as published by the Free Software
  Foundation; either version 2.1, or (at your option) any later version.

  TALER is distributed in the hope that it will be useful, but WITHOUT ANY
  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more details.

  You should have received a copy of the GNU Affero General Public License along with
  TALER; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>


Wallet Manual
#############

The GNU Taler wallet allows customers to withdraw and spend digital cash.

.. contents:: Table of Contents
  :depth: 1
  :local:


WebExtension Wallet
===================

Building from source
--------------------

.. code-block:: console

  $ git clone https://git.taler.net/wallet-core.git
  $ cd wallet-core
  $ ./configure
  $ make webex-stable
  # Packaged extension now available as:
  # dist/taler-wallet-$VERSION.zip


Android Wallet
==============

Please see :ref:`Build-apps-from-source` in the :doc:`taler-developer-manual`.


iOS Wallet
==========

Please see :ref:`Build-iOS-from-source` in the :doc:`taler-developer-manual`.

.. _command-line-wallet:

Command-line Wallet
===================

This section describes how to use the GNU Taler wallet command line
interface (CLI).

The the wallet CLI is targeted at developers and operators, but not meant to be
used by customers.  It exposes all functionality that the more user-friendly
interfaces (Android app, browser extension) offer.  However, it provides more
diagnostics and advanced features as well.

Building from source
--------------------

The easiest way to install the wallet is via NPM.  Note that a recent version of
Node.JS (``>=12.20.1``) is required.

We recommend to install the wallet package on a per-user basis,
thus setting ``$INSTALL_PREFIX`` to a directory in ``$HOME``.

.. code-block:: console

  $ git clone https://git.taler.net/wallet-core.git
  $ cd wallet-core
  $ ./bootstrap
  $ ./configure --prefix=$INSTALL_PREFIX
  $ make && make install

The wallet command-line interface should then be available as ``taler-wallet-cli`` under ``$INSTALL_PREFIX/bin``.

Installation via NPM
--------------------

The wallet can also obtained via NPM, the Node Package Manager.

To install the wallet as a global package, run:

.. code-block:: console

  $ npm install -g taler-wallet
  # check if installation was successful
  $ taler-wallet-cli --version

To install the wallet only for your user, run:

.. code-block:: console

  $ npm install -g --prefix=$HOME/local taler-wallet
  # check if installation was successful
  $ taler-wallet-cli --version
  # If this fails, make sure that $HOME/local/bin is in your $PATH

To use the wallet as a library in your own project, run:

.. code-block:: console

  $ npm install taler-wallet


Getting Help
------------

The wallet CLI comes with built-in help.  Invoke the wallet CLI (or any subcommand) with the ``--help`` flag to get help:

.. code-block:: console

  $ taler-wallet-cli --help
  Usage: taler-wallet-cli COMMAND

  Command line interface for the GNU Taler wallet.

  Options:
    -h, --help             Show this message and exit.
    --wallet-db=VALUE      location of the wallet database file
    --timetravel=VALUE     modify system time by given offset in microseconds
    --inhibit=VALUE        Inhibit running certain operations, useful for debugging and testing.
    --no-throttle          Don't do any request throttling.
    -v, --version
    -V, --verbose          Enable verbose output.

  Commands:
    advanced               Subcommands for advanced operations (only use if you know what you're doing!).
    api                    Call the wallet-core API directly.
    backup                 Subcommands for backups
    balance                Show wallet balance.
    deposit                Subcommands for depositing money to payto:// accounts
    exchanges              Manage exchanges.
    handle-uri             Handle a taler:// URI.
    pending                Show pending operations.
    run-pending            Run pending operations.
    run-until-done         Run until no more work is left.
    testing                Subcommands for testing GNU Taler deployments.
    transactions           Show transactions.

Completing operations
---------------------

Note that the CLI does not run as a background daemon.  When starting
operations that don't immediately finish, the wallet needs to be run explicitly
to finish any pending tasks:


.. code-block:: console

  # Do one attempt to finish all pending operations
  $ taler-wallet-cli run-pending

  # Run until all work is done
  $ taler-wallet-cli run-until-done

Resetting the wallet
--------------------

The wallet can be reset by deleting its database file.  By default, the database file
is ``$HOME/.talerwalletdb.json``.


Handling taler:// URIs
----------------------

Many interactions with the Taler wallet happen by scanning QR codes or special
headers on Websites.  To emulate this with the command line interface, run the following
command:

.. code-block:: console

  $ taler-wallet-cli handle-uri $URI


Manual withdrawing
------------------

.. code-block:: console

  $ taler-wallet-cli advanced withdraw-manually \
      --exchange https://exchange.eurint.taler.net/ \
      --amount EUR:5


P2P push payments
-----------------

The following code generates a P2P push transaction over 1 CHF
with an expiration time of 30 days (assuming the wallet has a
sufficient balance):

.. code-block:: console

  $ taler-wallet-cli p2p initiate-push-debit \
      --purse-expiration="30 d" \
      --summary="The summary" \
      CHF:1

The final URL can then be found in the transaction list:

.. code-block:: console

  $ taler-wallet-cli transactions

Background wallet
-----------------

A wallet can be launched in the background:

.. code-block:: console

  $ taler-wallet-cli advanced serve &

You can then run various Taler operations faster against
this one persistent instance:

.. code-block:: console

  $ taler-wallet-cli --wallet-connection=wallet-core.sock ...

Here ``...`` needs to be changed to the commando to run.
Make sure to run

.. code-block:: console

  $ taler-wallet-cli --wallet-connection=wallet-core.sock \
      run-until-done

to wait for pending transactions to complete.


Testing an exchange deployment
------------------------------

The following series of commands can be used to check that an exchange deployment
is functional:

.. code-block:: console

  # This will now output a payto URI that money needs to be sent to in order to allow withdrawal
  # of taler coins
  $ taler-wallet-cli advanced withdraw-manually --exchange $EXCHANGE_URL --amount EUR:10.50

  # Show the status of the manual withdrawal operation
  $ taler-wallet-cli transactions

  # Once the transfer has been made, try completing the withdrawal
  $ taler-wallet-cli run-pending

  # Check status of transactions and show balance
  $ taler-wallet-cli transactions
  $ taler-wallet-cli balance

  # Now, directly deposit coins with the exchange into a target account
  # (Usually, a payment is made via a merchant.  The wallet provides
  # this functionality for testing.)
  $ taler-wallet-cli deposit create EUR:5 payto://iban/$IBAN

  # Check if transaction was successful.
  # (If not, fix issue with exchange and run "run-pending" command again)
  $ taler-wallet-cli transactions

  # The wallet can also track if the exchange wired the money to the merchant account.
  # The "deposit group id" can be found in the output of the transactions list.
  $ taler-wallet-cli deposit track $DEPOSIT_GROUP_ID

.. _withdraw-simulation:


Paying for an order
===================

.. note::

   This section is in dire need for some editing...

This section explains how to pay for an order in a scenario where the fiat bank
is simulated.  The simulation takes place by crafting ad-hoc XML files as if the
bank would have issued them.  Such XML files carry information about incoming payments
to the regional currency master bank account.  Finally, the XML files are passed
to LibEuFin nexus via a convenient CLI method.  The responsible script for such
simulation is ``withdraw.sh``.

Run ``./withdraw.sh`` without any arguments.  Assuming that you ran the command
as the ``test-user``, after the execution, 5 units of the regional currency should
be found in the CLI wallet owned by ``test-user``.


Check it with:

.. code-block:: console

  $ taler-wallet-cli balance

If so, call the wallet in the following way to finally pay for the order just created:

.. code-block:: console

  $ taler-wallet-cli handle-uri "$TALER_PAY_URI"

.. note::

   Reset the state before going to production, as it impacts the way nexus
   asks records to the bank.  In particular, delete: any database and the
   files ``config/user.conf`` and ``config/internal.conf``, and finally run
   ``./main.sh`` again.





APIs and Data Formats
=====================

Envelope Format
---------------

All API responses and notifications are returned in the
following envelope:

.. ts:def:: WalletResponseEnvelope

   type WalletResponseEnvelope =
    | WalletSuccess
    | WalletError
    | WalletNotification

.. ts:def:: WalletSuccess

   export interface WalletSuccess {
     type: "response";
     operation: string;
     // ID to correlate success response to request
     id: string;
     // Result type depends on operation
     result: unknown;
   }

.. ts:def:: WalletError

   export interface WalletError {
     type: "error";
     operation: string;
     // ID to correlate error response to request
     id: string;
     error: WalletErrorInfo;
   }

.. ts:def:: WalletNotification

   export interface WalletSuccess {
     type: "notification";

     // actual type is WalletNotification,
     // to be documented here
     payload: any;
   }

.. ts:def:: WalletErrorInfo

   export interface WalletErrorInfo {
     // Numeric error code defined defined in the
     // GANA gnu-taler-error-codes registry.
     talerErrorCode: number;

     // English description of the error code.
     talerErrorHint: string;

     // English diagnostic message that can give details
     // for the instance of the error.
     message: string;

     // Error details, type depends
     // on talerErrorCode
     details: unknown;
   }

Withdrawal
----------

A typical API sequence for *bank-integrated* withdrawals can for example look like this:

#. ``"getWithdrawalDetailsForUri"`` returns an amount and default exchange
#. ``"getWithdrawalDetailsForAmount"`` returns fee information and that ToS are not accepted

   #. ``"getExchangeTos"`` are shown to the user and return currentEtag
   #. ``"setExchangeTosAccepted"`` called with currentEtag after user accepted

#. ``"acceptWithdrawal"`` after the user confirmed withdrawal with associated fees

A typical API sequence for *manual* withdrawals can for example look like this:

#. ``"listExchanges"`` shows a list of exchanges to the user who picks one and an amount
#. ``"getWithdrawalDetailsForAmount"`` returns fee information and that ToS are not accepted

   #. ``"getExchangeTos"`` are shown to the user and return currentEtag
   #. ``"setExchangeTosAccepted"`` called with currentEtag after user accepted

#. ``"acceptManualWithdrawal"`` after the user confirmed withdrawal with associated fees

Integration Tests
=================

Integration Test Example
------------------------

Integration tests can be done with the low-level wallet commands.  To select which coins and denominations
to use, the wallet can dump the coins in an easy-to-process format (`CoinDumpJson <https://git.taler.net/wallet-core.git/tree/src/types/talerTypes.ts#n734>`__).

The database file for the wallet can be selected with the ``--wallet-db``
option.  This option must be passed to the ``taler-wallet-cli`` command and not
the subcommands.  If the database file doesn't exist, it will be created.

The following example does a simple withdrawal recoup:

.. code-block:: console

  # Withdraw digital cash
  $ taler-wallet-cli --wallet-db=mydb.json testing withdraw \
      -b https://bank.int.taler.net/ \
      -e https://exchange.int.taler.net/ \
      -a INTKUDOS:10

  $ coins=$(taler-wallet-cli --wallet-db=mydb.json advanced dump-coins)

  # Find coin we want to revoke
  $ rc=$(echo "$coins" | \
         jq -r '[.coins[] | select((.denom_value == "INTKUDOS:5"))][0] | .coin_pub')

  # Find the denom
  $ rd=$(echo "$coins" | \
         jq -r '[.coins[] | select((.denom_value == "INTKUDOS:5"))][0] | .denom_pub_hash')

  # Find all other coins, which will be suspended
  $ susp=$(echo "$coins" | \
           jq --arg rc "$rc" '[.coins[] | select(.coin_pub != $rc) | .coin_pub]')

  # The exchange revokes the denom
  $ taler-exchange-keyup -r $rd
  $ taler-deployment-restart

  # Now we suspend the other coins, so later we will pay with the recouped coin
  $ taler-wallet-cli --wallet-db=mydb.json advanced suspend-coins "$susp"

  # Update exchange /keys so recoup gets scheduled
  $ taler-wallet-cli --wallet-db=mydb.json exchanges update -f https://exchange.int.taler.net/

  # Block until scheduled operations are done
  $ taler-wallet-cli --wallet-db=mydb.json run-until-done

  # Now we buy something, only the coins resulting from recouped will be
  # used, as other ones are suspended
  $ taler-wallet-cli --wallet-db=mydb.json testing test-pay \
      -m https://backend.int.taler.net/ \
      -k sandbox \
      -a "INTKUDOS:1" \
      -s "foo"
  $ taler-wallet-cli --wallet-db=mydb.json run-until-done


To test refreshing, force a refresh:

.. code-block:: console

  $ taler-wallet-cli --wallet-db=mydb.json advanced force-refresh "$coin_pub"


To test zombie coins, use the timetravel option. It **must** be passed to the
top-level command and not the subcommand:

.. code-block:: console

  # Update exchange /keys with time travel, value in microseconds
  $ taler-wallet-cli --timetravel=1000000 --wallet-db=mydb.json \
      exchanges update -f https://exchange.int.taler.net/

Test Cases
----------

Things we already have tests for:

* Can the wallet recoup coins and spend them?
  [`link <https://git.taler.net/wallet-core.git/tree/integrationtests/test-recoup.sh>`__]

Things we still need tests for:

* Does the wallet do retries correctly when the exchange is not reachable?
  Or when the merchant is not reachable?  Or the bank?
  This can be tested by temporarily killing those services.
* How does the wallet deal with processing the same ``taler://(pay|withdraw)`` URI twice?
* Test refunds
* Test for :ref:`session-based payments <repurchase>`
* Test case for auto-refunds
  (scenario where the vending machine finds out that its motor is broken,
  so it automatically gives a refund)
* Does the wallet report "insufficient balance" correctly
  (as opposed to, say, crashing)?
* Perf tests:  How does the wallet handle withdrawing a *LOT* of coins?
* Are the transaction history and pending operations reported correctly?

Tests for things the wallet doesn't handle correctly yet:

* What happens if the wallet double-spends a coin?
  (Easy to test by copying the wallet DB before spending
  and then running a spend again with the old DB).
* What happens when a reserve is changed between accepting withdrawal
  and actually withdrawing coins?
  (This is harder to test.  Might not be possible with the current CLI.
  The idea would be be to have some ``--inhibit=withdraw`` flag
  that tells the wallet to not actually withdraw,
  so we can change the reserve state and then resume the wallet.)
* What happens if the exchange suddenly has a completely new list of denominations on offer?
* What happens if the exchange changes its master public key?
  The wallet *should* handle this gracefully
  even if we have coins with that exchange,
  provided that the old denominations can be recouped.
  (That one is pretty difficult!)
* Does the wallet handle :ref:`payment aborts <order-abort>` correctly?

There are test cases that require us to modify the communication between the wallet and exchange.

* What does the wallet do when the exchange/merchant announce an incompatible protocol version?
* What happens if some signature made by the exchange/merchant is garbage?
* What if the exchange reports a double-spend and the proof it gives us is invalid?



Integration Test and Fault Injection Framework
----------------------------------------------

This section describes the current approach to integration testing in the wallet.

It's all based on a TypeScript harness process, which itself implements
the fault injection proxy (async and in-process)!

The new approach consists of the following parts:

1. A strongly typed, convenient helper library to easily set up and run
arbitrary Taler deployments and run test cases.  These components plug
together as easily as lego bricks, even with multiple
exchanges/merchants/banks/etc.  Logs and clean shutdown (even on SIGINT
or errors) are handled properly.  (Support for auditors is still pending
but needed to fully test the wallet.)

This is how a simple withdrawal and payment test case looks like:
`<https://git.taler.net/wallet-core.git/tree/packages/taler-integrationtests/src/test-payment.ts>`__

(What's particularly nice is that all our docs contain TypeScript
definitions for all API request bodies.  So just copying them into the
test harness gives us auto-completion and compile-time checks to avoid
typos.  The wallet's JSON validation machinery is also re-used.)

2. A fault injection proxy that can be plugged between the services
and/or the wallet.  It runs alongside the test harness, and can thus can
use arbitrary custom logic.  There's no dependency for it other than
built-in Node.JS libraries.  Simple fault injections are just as easy to
set up as with the twister.

The following test case (a) logs all requests and responses to the test
harness stdout and (b) at a certain point, starts dropping the next 10
requests to the exchange (testing the wallet's retry logic):

`<https://git.taler.net/wallet-core.git/tree/packages/taler-integrationtests/src/test-payment-fault.ts#n165>`__

3. All util functionality from JS wallet-core, such as the Taler crypto,
amount/date/etc. handling and JSON parsing/validation (the wallet is now
more modular and easier to use as a library) can be used in the
integration tests, even if a different wallet (Kotlin, whatever) is
tested via the CLI.

4. A bunch of test cases that use (1)-(3).  These are *significantly*
more readable and hackable than other test approaches we had, while
allowing for more complex scenarios.  There are still way too few tests
though!

5. A test runner (written in bash) that runs test cases based on a glob
pattern and reports the results.

Injecting a fault is as easy as:

.. code:: ts

  // Set up test case
  [...]

  exchangeProxy.addFault({
    beforeResponse(ctx: FaultInjectionResponseContext) {
       if (cond1) { // Drop some responses
         ctx.dropResponse = true;
         return;
       } else if (cond2) { // modify some others
         ctx.responseBody = Buffer.from(`{"oops": true}`, "utf-8");
         return;
       }
       // Other things that can be modified:
       // - drop/modify the request, not just the response
       // - modify headers
       // - modify status codes
    }
  });

  await doSomethingWithTheWallet();

  exchangeProxy.clearFault();

  await doMoreWithTheWallet();


To make the configuration easy, an ``ExchangeService`` (or ``MerchantService``,
``BankService`` etc.) can be wrapped in a ``FaultInjectedExchangeService``,
which implements the ``ExchangeServiceInterface``:

.. code:: ts

  // create exchange and two merchants
  const exchange = await setupExchange(...);
  const merchant1 = ...;
  const merchant2 = ...;

  // Add exchange to merchant-accepted exchanges.
  // This will adjust the config.
  merchant1.addExchange(exchange);

  // Wrap exchange in fault injection proxy
  const faultInjectedExchange: ExchangeServiceInterface
    = new FaultInjectedExchangeService(t, exchange1, 8085);

  // Merchant 2 talks to the exchange over fault injection,
  // and thus must use the "twisted" base URL.
  merchant2.addExchange(faultInjectedExchange);


The package for the integration tests is here:

`<https://git.taler.net/wallet-core.git/tree/packages/taler-integrationtests>`__

The shortcut to run all integration tests is

.. code:: sh

  ./bootstrap && ./configure --prefix=... \
     && make install integrationtests

(From the root of the whole repo.  If you're developing tests, it's way
faster to just run "make compile install" once and then use
"./testrunner" from the ``taler-integrationtests`` package.)