summaryrefslogtreecommitdiff
path: root/src/include/taler_testing_lib.h
AgeCommit message (Collapse)Author
2019-07-23modify /payback API and test usage of that API to pass/return additional ↵Christian Grothoff
information required when dealing with payback of refreshed coins
2019-07-21expose blinding key in refresh-reveal API in preparation for #5777Christian Grothoff
2019-07-19rename fresh coin to have TALER_TESTING_-prefixChristian Grothoff
2019-07-15towards #5777, adding todos/notesChristian Grothoff
2019-07-15fix use of index in testing_api_cmd_refresh.cChristian Grothoff
2019-04-10Fixing twisted tests.Marcello Stanisci
It has been observed that when a "twisted" test has "very little" commands in the stack, it uses to fail since the proxied service cannot be reached. This commit puts some delay before the first command gets run by the test interpreter; both in the form of a "blind" sleep, and with a more structured 'wget' loop.
2019-04-08/history-range.Marcello Stanisci
Implementing the "lib" and "testing-lib" functions to use it.
2019-04-04Inserting "now" argument into "/keys".Marcello Stanisci
Also using this new logic from the cherry-pick test case.
2019-04-03Faking the time.Marcello Stanisci
Cherry-pick tests now uses the now-faked version of taler-exchange-keyup. Fails.
2019-01-25Revert explicit AUDITOR_connect at tests.Marcello Stanisci
2019-01-24Auditor tests.Marcello Stanisci
Fix double connection.
2019-01-21Export testing-cert_cb in the API.Marcello Stanisci
This way, this very basic cert_cb can be reused by other testing commands.
2019-01-17/keys API.Marcello Stanisci
Adding method to override the last_denom value for a key set.
2019-01-16Extend tests.Marcello Stanisci
Give a way to force redownload (= no cherry picking) all /keys.
2019-01-09Send SIGUSR1 for new keys reloading.Marcello Stanisci
2018-12-21Export new APIMarcello Stanisci
2018-12-21Provide test API for keys serialization.Marcello Stanisci
2018-12-18/withdraw: #5284.Marcello Stanisci
2018-12-18/wire: #5284Marcello Stanisci
2018-12-18/track/*: #5284.Marcello Stanisci
2018-12-18/refresh/* & /reserve/status: #5284.Marcello Stanisci
2018-12-18/refresh/*: #5284.Marcello Stanisci
2018-12-18/deposit: #5284.Marcello Stanisci
2018-12-18check-keys CMD: #5284.Marcello Stanisci
2018-11-25getting test_auditor_api to passChristian Grothoff
2018-11-20Offer contract terms trait as a JSON object.Marcello Stanisci
2018-11-17complete /deposit-confirmation test commandChristian Grothoff
2018-11-17use more const in taler_testing_lib.hChristian Grothoff
2018-11-17more work towards testing deposit confirmationsChristian Grothoff
2018-11-17work towards testing auditor deposit-confirmation APIChristian Grothoff
2018-11-11extend testing logic to setup handle for the auditorChristian Grothoff
2018-11-11improve auditor support in libtalertestingChristian Grothoff
2018-11-10preparing test logic for new auditor requirements (incomplete)Christian Grothoff
2018-10-13fix issue with 'meta' not being initialized - by getting rid of itChristian Grothoff
2018-09-15add sleep commandChristian Grothoff
2018-08-19add logic to allow fakebank transfers to be retriedChristian Grothoff
2018-08-19add remote benchmarkingFlorian Dold
2018-08-11implement retries for a few more commandsChristian Grothoff
2018-08-10add variant that allows us to control the timeoutChristian Grothoff
2018-08-10add retry support to withdraw test logicChristian Grothoff
2018-08-09in parallel tests, only launch one exchange -- still broken: code attempts ↵Christian Grothoff
to launch multiple fakebanks
2018-06-28Instruction pointer gets negative values too.Marcello Stanisci
2018-06-20Implementing #5306.Marcello Stanisci
2018-06-20batch CMD skeleton + include defs.Marcello Stanisci
2018-06-20Put lookup logic for meta-commands.Marcello Stanisci
2018-05-29Get rid of "@param selector".Marcello Stanisci
2018-05-29Commenting the main "testing" header file.Marcello Stanisci
2018-05-17Trigger conflicting refundsMarcello Stanisci
2018-05-14Triggering doubled /refresh/melt, plus prepare ground for twisting the ↵Marcello Stanisci
/refresh/reveal
2018-04-02Changing configuration structure to enable multiple accounts.Christian Grothoff
This change enables using multiple wire plugins at the same time. Also, we now distinguish between the wire plugin (i.e. EBICS or taler_bank) and the wire method (i.e. SEPA or x-taler-bank) that the wire plugin is implementing. The "taler-bank" wire method was renamed from "test" to "x-taler-bank". This also changes the format of the /wire response of the exchange, as we now need to return multiple accounts. Note that wire fees are specified per wire method, not per wire account. taler-exchange-keyup now automatically signs all of the /wire responses in the location specified by the configuration. Account identification in wire plugins was changed to use payto://-URLs instead of method-specific JSON fields. Signing and validation of /wire responses was moved from each wire plugin to a generic validation method in libtalerutil (crypto) or libtalerjson (for JSON-formatted inputs). Convenience methods were added to generate JSON for wire accounts (salting, signing). Various section and option names were adjusted to streamline the configuration and make it more consistent overall. Documentation was updated as well.