summaryrefslogtreecommitdiff
path: root/tests/libwallet_api_tests
Commit message (Collapse)AuthorAgeFilesLines
* update copyright year, fix occasional lack of newline at line endRiccardo Spagni2017-02-212-2/+2
|
* switch to boost::thread for mingw buildLee Clagett2017-02-162-29/+32
|
* update wallet api testsJaquee2017-02-041-7/+8
|
* Change logging to easylogging++moneromooo-monero2017-01-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This replaces the epee and data_loggers logging systems with a single one, and also adds filename:line and explicit severity levels. Categories may be defined, and logging severity set by category (or set of categories). epee style 0-4 log level maps to a sensible severity configuration. Log files now also rotate when reaching 100 MB. To select which logs to output, use the MONERO_LOGS environment variable, with a comma separated list of categories (globs are supported), with their requested severity level after a colon. If a log matches more than one such setting, the last one in the configuration string applies. A few examples: This one is (mostly) silent, only outputting fatal errors: MONERO_LOGS=*:FATAL This one is very verbose: MONERO_LOGS=*:TRACE This one is totally silent (logwise): MONERO_LOGS="" This one outputs all errors and warnings, except for the "verify" category, which prints just fatal errors (the verify category is used for logs about incoming transactions and blocks, and it is expected that some/many will fail to verify, hence we don't want the spam): MONERO_LOGS=*:WARNING,verify:FATAL Log levels are, in decreasing order of priority: FATAL, ERROR, WARNING, INFO, DEBUG, TRACE Subcategories may be added using prefixes and globs. This example will output net.p2p logs at the TRACE level, but all other net* logs only at INFO: MONERO_LOGS=*:ERROR,net*:INFO,net.p2p:TRACE Logs which are intended for the user (which Monero was using a lot through epee, but really isn't a nice way to go things) should use the "global" category. There are a few helper macros for using this category, eg: MGINFO("this shows up by default") or MGINFO_RED("this is red"), to try to keep a similar look and feel for now. Existing epee log macros still exist, and map to the new log levels, but since they're used as a "user facing" UI element as much as a logging system, they often don't map well to log severities (ie, a log level 0 log may be an error, or may be something we want the user to see, such as an important info). In those cases, I tried to use the new macros. In other cases, I left the existing macros in. When modifying logs, it is probably best to switch to the new macros with explicit levels. The --log-level options and set_log commands now also accept category settings, in addition to the epee style log levels.
* Wallet2 + API: Callbacks for unconfirmed transfersJaquee2017-01-121-0/+10
|
* Bitmonero namespace renamed Monero. Bitmonero namespace alias added so that ↵Randi Joseph2016-12-131-136/+136
| | | | third party uses of the wallet api can transition.
* libwallet_api: test: adjusted mixin_count=4 as it's minumum allowedIlya Kitaev2016-10-061-3/+4
|
* libwallet_api: some renamingsIlya Kitaev2016-10-061-6/+8
|
* libwallet_api: do not use fast-refresh on recoveryIlya Kitaev2016-10-011-11/+53
|
* libwallet_api: fast-refresh in case of opening non-synced walletIlya Kitaev2016-09-301-1/+25
|
* libwallet_api: fast-refresh for new walletIlya Kitaev2016-09-301-3/+28
|
* libwallet_api: test for create/init wallet on mainnetIlya Kitaev2016-09-281-3/+50
|
* libwallet_api: tests: fixed WalletCallbackReceived testIlya Kitaev2016-09-281-3/+7
|
* libwallet_api: tests: test fixed according implementationIlya Kitaev2016-09-271-1/+0
|
* libwallet_api: tests: compilation errors fixedIlya Kitaev2016-09-271-2/+2
|
* wallet2_api: added Wallet::daemonBlockChainHeight()Ilya Kitaev2016-09-262-5/+21
|
* libwallet_api: Wallet::blockChainHeight, WalletListener::newBlockIlya Kitaev2016-09-261-2/+49
|
* libwallet_api: simple documentation on testing environmentIlya Kitaev2016-09-232-3/+25
|
* libwallet_api: tests: env variables for WALLETS_ROOT_DIR andIlya Kitaev2016-09-221-13/+36
| | | | TESTNET_DAEMON_ADDRESS
* libwallet_api: tests: changed testwallets path, uncommitted all testsIlya Kitaev2016-09-221-12/+14
|
* wallet2_api: getter and setter for "refresh interval"Ilya Kitaev2016-09-201-6/+13
|
* cmake: transitive deps and remove deprecated LINK_*redfish2016-09-181-1/+5
| | | | | | | | | | | | | | Keep the immediate direct deps at the library that depends on them, declare deps as PUBLIC so that targets that link against that library get the library's deps as transitive deps. Break dep cycle between blockchain_db <-> crytonote_core. No code refactoring, just hide cycle from cmake so that it doesn't complain (cycles are allowed only between static libs, not shared libs). This is in preparation for supproting BUILD_SHARED_LIBS cmake built-in option for building internal libs as shared.
* fix remaining bitmonero and simplewallet bitsRiccardo Spagni2016-09-0310-10/+10
|
* tests: cmake: fix building with system gtestredfish2016-08-301-1/+1
| | | | Issues #980 #983
* libwallet_api: tests: checking for result while opening walletIlya Kitaev2016-08-231-4/+6
|
* libwallet_api: Wallet::amountFromString fixedIlya Kitaev2016-08-231-0/+23
|
* libwallet_api: tests: removed logged passwordsIlya Kitaev2016-08-221-2/+2
|
* libwallet_api: do not store wallet on close if status is not okIlya Kitaev2016-08-221-2/+67
|
* wallet_api: async init, Wallet::connected status, log levelIlya Kitaev2016-07-181-20/+81
|
* WalletListener functionalityIlya Kitaev2016-07-182-39/+90
|
* Transaction fee multiplier aka priority integragedIlya Kitaev2016-07-181-0/+42
|
* Merge branch 'master' of https://github.com/mbg033/bitmoneroIlya Kitaev2016-06-231-11/+6
|\
| * Wallet::createTransaction: added mixin_count paramIlya Kitaev2016-06-201-1/+40
| |
| * double/string to monero integer convertion methodsIlya Kitaev2016-06-161-2/+14
| |
| * wallet::default_mixin exposed to public interface asIlya Kitaev2016-06-101-0/+2
| | | | | | | | | | Wallet::setDefaultMixin, Wallet::defaultMixin; wallet::create_transaction_2 used in Wallet::createTransaction
| * Wallet::filename, Wallet::keysFilename, tests for move walletIlya Kitaev2016-06-101-0/+29
| |
| * Wallet API : WalletManager::findWallets() addedIlya Kitaev2016-06-034-15/+29
| |
| * scripts for faster test wallets generationIlya Kitaev2016-06-0111-19/+120
| |
| * regenerated test wallets, basic functions got brokenIlya Kitaev2016-05-271-17/+20
| |
| * WalletListener::moneyReceived testIlya Kitaev2016-05-171-12/+38
| |
| * WalletListener::moneySpent testIlya Kitaev2016-05-161-53/+154
| |
| * TransactionHistory continuedIlya Kitaev2016-04-291-11/+55
| |
| * Wallet API: transaction history in progressIlya Kitaev2016-04-221-4/+4
| |
| * Wallet API : transaction history in progressIlya Kitaev2016-04-221-0/+28
| |
| * TODOs for Transaction/Transfer interfaceIlya Kitaev2016-04-121-4/+4
| |
| * Transaction API continuedIlya Kitaev2016-04-061-0/+2
| |
| * Wallet::createTransaction API introducedIlya Kitaev2016-04-051-2/+8
| |
| * Wallet::transfer() continuedIlya Kitaev2016-04-041-0/+16
| |
| * Wallet::refresh + testsIlya Kitaev2016-03-311-0/+12
| |
| * testnet option, Wallet::balance(), Wallet::unlockedBalance()Ilya Kitaev2016-03-311-11/+12
| |