utarl
ab8579148c
add multiple current owners
2017-01-04 10:49:07 +08:00
utarl
4266499263
change messy code
2017-01-04 10:44:30 +08:00
utarl
0c53a49405
change messy code
2017-01-04 10:36:10 +08:00
utarl
b8ae2132aa
change messy code
2017-01-04 10:21:43 +08:00
utarl
c0d812f0d2
change messy code
2017-01-04 10:18:06 +08:00
utarl
4de0bb4c8c
change messy code
2017-01-04 10:11:00 +08:00
utarl
96432ce0be
add multiple current owners
2017-01-04 10:01:45 +08:00
Brett Sun
8fa3245309
Rename any *util.py to *utils.py ( #991 )
2016-12-22 17:39:39 +01:00
Brett Sun
438958fdea
Rename builtin-in input override in commands ( #988 )
...
* Rename commands.bigchain.input to input_on_stderr to avoid confusion
* Allow input_on_stderr to not take a prompt
* Fix tests broken by renaming of commands.bigchaindb.input
2016-12-22 17:03:53 +01:00
libscott
5190e0a682
Merge pull request #925 from bigchaindb/inputs-outputs
...
Inputs & Outputs
2016-12-22 13:52:19 +01:00
Scott Sadler
04a78aacec
Merge remote-tracking branch 'origin/master' into inputs-outputs
2016-12-22 13:45:02 +01:00
Brett Sun
2882bee48e
Small flake8 fixes for tests ( #987 )
2016-12-22 11:57:13 +01:00
Brett Sun
9319583ab4
Remove Asset and AssetLink ( #982 )
...
* Remove asset.validate_asset and move its validation checks to other areas
* Move Asset.get_asset_id to Transaction
* Remove Asset and AssetLink models
* Add test against creating TRANSFER transactions with bad asset
2016-12-22 10:19:21 +01:00
Sylvain Bellemare
44391da94a
Add genesis block fixture and marker
2016-12-21 17:45:14 +01:00
Rodolphe Marques
5017ece84c
Merge pull request #983 from bigchaindb/feat/980/initialise-replica-set-mongo
...
Initialize mongodb replica set
2016-12-21 17:26:22 +01:00
Rodolphe Marques
9c0d696b7e
Better unittests
...
Simplify code
2016-12-21 16:52:57 +01:00
Rodolphe Marques
5fedabe586
fix test
2016-12-21 15:55:29 +01:00
Rodolphe Marques
1dd6c748b9
Merge remote-tracking branch 'origin/master' into feat/980/initialise-replica-set-mongo
2016-12-21 15:54:02 +01:00
Rodolphe Marques
4a14c7c8f1
Initialize replica set for mongodb when running bigchaindb init
2016-12-21 15:53:25 +01:00
Sylvain Bellemare
3a7fe30a31
Add description for bdb marker
2016-12-20 20:37:28 +01:00
Sylvain Bellemare
57b14c3062
Rename db_name to dbname
2016-12-20 20:37:28 +01:00
Sylvain Bellemare
7db02fa024
Get config from bigchaindb not from fixture
...
the fixture no longer returns the config, and is meant only to set the
config
2016-12-20 20:37:28 +01:00
Sylvain Bellemare
a269375278
Use pytest custom marker "bdb"
...
note that the marker, although invoked for the entire module, will be
applied for each function
2016-12-20 20:37:28 +01:00
Sylvain Bellemare
f6a55c78af
Implement test utils function to flush mongo db
2016-12-20 20:37:28 +01:00
Sylvain Bellemare
18d5a49097
Take env var value if set for db port
2016-12-20 20:37:28 +01:00
Sylvain Bellemare
11271738f3
Remove unnecessary fixture
...
it was needed when the root fixture was using autouse
2016-12-20 20:37:28 +01:00
Sylvain Bellemare
fa79fe6783
Add session scope test setup for config and db
...
resolves #966
2016-12-20 20:37:28 +01:00
Rodolphe Marques
83d37d699f
Merge pull request #979 from bigchaindb/bug-mongodb-write-block
...
fix mongodb write_block
2016-12-20 19:07:15 +01:00
Brett Sun
151d1c5a0c
Suggest starting multi-line imports on the next line to pass flake8 ( #923 )
2016-12-20 18:30:42 +01:00
Rodolphe Marques
71bb63376f
fix mongodb write_block without thouching mongodb code
2016-12-20 18:04:38 +01:00
libscott
7e33f2bd52
Tx ID as Asset ID ( #926 )
...
* Allow AssetLinks to be used in place of Assets in the Transaction Model and enforce `Transaction.transfer()` to only take an AssetLink
* Remove AssetLink's inheritance from Asset
* Remove id from the Asset model
* Fix get_txids_by_asset_id query for rethinkdb after removing asset's uuid
Because `CREATE` transactions don't have an asset that contains an id
anymore, one way to find all the transactions related to an asset is to
query the database twice: once for the `CREATE` transaction and another
for the `TRANSFER` transactions.
* Add TODO notice for vote test utils to be fixtures
* Update asset model documentation to reflect usage of transaction id
* Fix outdated asset description in transaction schema
2016-12-20 17:28:15 +01:00
Rodolphe Marques
1d7a8e3369
Merge pull request #977 from bigchaindb/feat/958/test-mongo-connection
...
Test mongodb connection
2016-12-20 14:48:30 +01:00
Rodolphe Marques
47ca91355f
Moved tests from rethinkdb test_run_query_util to test_connection
2016-12-20 14:32:53 +01:00
Rodolphe Marques
39c25b951f
added tests for mongodb connection
2016-12-20 14:25:24 +01:00
Scott Sadler
d80de928a5
wording change in Transaction.create documentation
2016-12-20 14:15:05 +01:00
Troy McConaghy
8fa6789745
Merge pull request #965 from bigchaindb/move-all-runtests-docs-to-one-place
...
Consolidated all tests-related docs in one place
2016-12-20 14:02:52 +01:00
Rodolphe Marques
61cfe1b370
Merge pull request #971 from bigchaindb/feat/959/test-mongodb-schema
...
Created tests for mongodb schema
2016-12-20 13:56:32 +01:00
Brett Sun
ad6f267055
Add instructions for rebuilding docker images after upgrading
2016-12-20 13:52:46 +01:00
Troy McConaghy
8989731ae0
Merge pull request #976 from bigchaindb/update-azure-quickstart-template-docs-again
...
Updated the docs for the Azure Quickstart Template
2016-12-20 11:46:07 +01:00
troymc
854d2974f5
Removed instructions for the case when PR #2884 wasn't merged
2016-12-20 11:33:47 +01:00
libscott
b2cb426097
Merge pull request #962 from bigchaindb/remove-asset-keywords
...
Remove asset keywords
2016-12-20 10:02:42 +01:00
Troy McConaghy
ed3b0b8b9c
Merge pull request #961 from bigchaindb/fix-http-api-docs-intro
...
Fixed HTTP API docs re/ API Endpoint
2016-12-19 17:48:51 +01:00
Brett Sun
8470854769
Add extra set of backticks for code-blocks in inputs and outputs docs
2016-12-19 16:14:58 +01:00
Brett Sun
b64026441b
Add changes from @ttmc's suggestions
2016-12-19 16:12:09 +01:00
Brett Sun
d412c934b1
Add extra sentence to inputs and outputs docs describing divisible assets
2016-12-19 16:04:31 +01:00
Brett Sun
727e9822b5
Move asides in inputs and outputs docs to be sphinx notes
2016-12-19 16:04:31 +01:00
Brett Sun
a0487493ae
Small wording and typo fixes for inputs and outputs docs
2016-12-19 16:04:31 +01:00
Rodolphe Marques
050990aac1
Created tests for mongodb schema
...
Removed some unused secondary indexes
2016-12-19 15:45:02 +01:00
Scott Sadler
3f2966072e
change creators to tx_signers in Transaction.create
2016-12-19 15:42:11 +01:00
Brett Sun
7070c39aca
Fix small typo in AmountError's docstring
2016-12-19 15:38:30 +01:00