integration testing scripts #64

Merged
jeffreypicard merged 8 commits from integration_testing into master 2022-10-04 19:25:44 +02:00
4 changed files with 252 additions and 0 deletions
Showing only changes of commit fd0e5c58c2 - Show all commits

View file

@ -0,0 +1,13 @@
FROM jeffreypicard/hub-github-env:dev
COPY scripts/integration_tests.sh /integration_tests.sh
COPY scripts/cicd_integration_test_runner.sh /cicd_integration_test_runner.sh
COPY herald /herald
RUN apt install -y jq curl
ENV CGO_LDFLAGS "-L/usr/local/lib -lrocksdb -lstdc++ -lm -lz -lsnappy -llz4 -lzstd"
ENV CGO_CFLAGS "-I/usr/local/include/rocksdb"
ENV LD_LIBRARY_PATH /usr/local/lib
ENTRYPOINT ["/cicd_integration_test_runner.sh"]

View file

@ -0,0 +1,9 @@
moodyjon commented 2022-09-21 19:56:16 +02:00 (Migrated from github.com)
Review

This is missing herald launch, and calling integration_tests.sh.

This is missing herald launch, and calling integration_tests.sh.
moodyjon commented 2022-09-21 19:56:16 +02:00 (Migrated from github.com)
Review

This is missing herald launch, and calling integration_tests.sh.

This is missing herald launch, and calling integration_tests.sh.
#!/bin/bash
moodyjon commented 2022-09-21 19:56:16 +02:00 (Migrated from github.com)
Review

This is missing herald launch, and calling integration_tests.sh.

This is missing herald launch, and calling integration_tests.sh.
#
moodyjon commented 2022-09-21 19:56:16 +02:00 (Migrated from github.com)
Review

This is missing herald launch, and calling integration_tests.sh.

This is missing herald launch, and calling integration_tests.sh.
# cicd_integration_test_runner.sh
moodyjon commented 2022-09-21 19:56:16 +02:00 (Migrated from github.com)
Review

This is missing herald launch, and calling integration_tests.sh.

This is missing herald launch, and calling integration_tests.sh.
#
moodyjon commented 2022-09-21 19:56:16 +02:00 (Migrated from github.com)
Review

This is missing herald launch, and calling integration_tests.sh.

This is missing herald launch, and calling integration_tests.sh.
# simple script to kick off herald and call the integration testing
moodyjon commented 2022-09-21 19:56:16 +02:00 (Migrated from github.com)
Review

This is missing herald launch, and calling integration_tests.sh.

This is missing herald launch, and calling integration_tests.sh.
# script
moodyjon commented 2022-09-21 19:56:16 +02:00 (Migrated from github.com)
Review

This is missing herald launch, and calling integration_tests.sh.

This is missing herald launch, and calling integration_tests.sh.
#
moodyjon commented 2022-09-21 19:56:16 +02:00 (Migrated from github.com)
Review

This is missing herald launch, and calling integration_tests.sh.

This is missing herald launch, and calling integration_tests.sh.
moodyjon commented 2022-09-21 19:56:16 +02:00 (Migrated from github.com)
Review

This is missing herald launch, and calling integration_tests.sh.

This is missing herald launch, and calling integration_tests.sh.
moodyjon commented 2022-09-21 19:56:16 +02:00 (Migrated from github.com)
Review

This is missing herald launch, and calling integration_tests.sh.

This is missing herald launch, and calling integration_tests.sh.

208
scripts/integration_tests.sh Executable file
View file

@ -0,0 +1,208 @@
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
#!/bin/bash
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
#
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# integration_testing.sh
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
#
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# GitHub Action CI/CD based integration tests for herald.go
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# These are smoke / sanity tests for the server behaving correctly on a "live"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# system, and looks for reasonable response codes, not specific correct
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# behavior. Those are covered in unit tests.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
#
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# N.B.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# For the curl based json tests the `id` field existing is needed.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
#
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# global variables
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
RES=(0)
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
FINALRES=0
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
CHUNK_TEST_RES="010000000000000000000000000000000000000000000000000000000000000000000000cc59e59ff97ac092b55e423aa549"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# functions
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
function logical_or {
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
for res in ${RES[@]}; do
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
if [ $res -eq 1 -o $FINALRES -eq 1 ]; then
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
FINALRES=1
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
return
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
fi
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
done
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
}
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
function want_got {
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
if [ "${WANT}" != "${GOT}" ]; then
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
echo "WANT: ${WANT}"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
echo "GOT: ${GOT}"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
RES+=(1)
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
else
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
RES+=(0)
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
fi
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
}
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
function want_greater {
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
if [ "${WANT}" -gt "${GOT}" ]; then
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
echo "WANT: ${WANT}"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
echo "GOT: ${GOT}"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
RES+=(1)
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
else
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
RES+=(0)
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
fi
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
}
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
function test_command_with_want {
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
echo $CMD
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
GOT=`eval $CMD`
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
want_got
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
}
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# grpc endpoint testing
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
read -r -d '' CMD <<- EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
grpcurl -plaintext -d '{"value": ["@Styxhexenhammer666:2"]}' 127.0.0.1:50051 pb.Hub.Resolve
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
| jq .txos[0].txHash | sed 's/"//g'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
WANT="VOFP8MQEwps9Oa5NJJQ18WfVzUzlpCjst0Wz3xyOPd4="
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
test_command_with_want
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# GOT=`eval $CMD`
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
#want_got
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
##
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
## N.B. This is a degenerate case that takes a long time to run.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
## The runtime should be fixed, but in the meantime, we definitely should
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
## ensure this behaves as expected.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
##
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
## TODO: Test runtime doesn't exceed worst case.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
##
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
#WANT=806389
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
#read -r -d '' CMD <<- EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# grpcurl -plaintext -d '{"value": ["foo"]}' 127.0.0.1:50051 pb.Hub.Resolve | jq .txos[0].height
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
#EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# test_command_with_want
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# json rpc endpoint testing
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
## blockchain.block
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
### blockchain.block.get_chunk
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
read -r -d '' CMD <<- EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
curl http://127.0.0.1:50001/rpc -s -H "Content-Type: application/json"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
--data '{"id": 1, "method": "blockchain.block.get_chunk", "params": [0]}'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
| jq .result | sed 's/"//g' | head -c 100
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
WANT="${CHUNK_TEST_RES}"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
test_command_with_want
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
### blockchain.block.get_header
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
read -r -d '' CMD <<- EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
curl http://127.0.0.1:50001/rpc -s -H "Content-Type: application/json"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
--data '{"id": 1, "method": "blockchain.block.get_header", "params": []}'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
| jq .result.timestamp
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
WANT=1446058291
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
test_command_with_want
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
### blockchain.block.headers
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
read -r -d '' CMD <<- EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
curl http://127.0.0.1:50001/rpc -s -H "Content-Type: application/json"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
--data '{"id": 1, "method": "blockchain.block.headers", "params": []}'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
| jq .result.count
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
WANT=0
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
test_command_with_want
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
## blockchain.claimtrie
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
read -r -d '' CMD <<- EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
curl http://127.0.0.1:50001/rpc -s -H "Content-Type: application/json"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
--data '{"id": 1, "method": "blockchain.claimtrie.resolve", "params":[{"Data": ["@Styxhexenhammer666:2"]}]}'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
| jq .result.txos[0].tx_hash | sed 's/"//g'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
WANT="VOFP8MQEwps9Oa5NJJQ18WfVzUzlpCjst0Wz3xyOPd4="
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
test_command_with_want
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
## blockchain.address
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
### blockchain.address.get_balance
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
read -r -d '' CMD <<- EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
curl http://127.0.0.1:50001/rpc -s -H "Content-Type: application/json"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
--data '{"id": 1, "method": "blockchain.address.get_balance", "params":[{"Address": "bGqWuXRVm5bBqLvLPEQQpvsNxJ5ubc6bwN"}]}'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
| jq .result.confirmed
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
WANT=44415602186
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
test_command_with_want
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
## blockchain.address.get_history
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
read -r -d '' CMD <<- EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
curl http://127.0.0.1:50001/rpc -s -H "Content-Type: application/json"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
--data '{"id": 1, "method": "blockchain.address.get_history", "params":[{"Address": "bGqWuXRVm5bBqLvLPEQQpvsNxJ5ubc6bwN"}]}'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
| jq '.result.confirmed | length'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
WANT=82
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
test_command_with_want
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
## blockchain.address.listunspent
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
read -r -d '' CMD <<- EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
curl http://127.0.0.1:50001/rpc -s -H "Content-Type: application/json"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
--data '{"id": 1, "method": "blockchain.address.listunspent", "params":[{"Address": "bGqWuXRVm5bBqLvLPEQQpvsNxJ5ubc6bwN"}]}'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
| jq '.result | length'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
WANT=32
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
test_command_with_want
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# blockchain.scripthash
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
## blockchain.scripthash.get_mempool
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
read -r -d '' CMD <<- EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
curl http://127.0.0.1:50001/rpc -s -H "Content-Type: application/json"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
--data '{"id": 1, "method": "blockchain.scripthash.get_mempool", "params":[{"scripthash": "bGqWuXRVm5bBqLvLPEQQpvsNxJ5ubc6bwN"}]}'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
| jq .error | sed 's/"//g'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:41:45 +02:00 (Migrated from github.com)
Review

Yeah.... the scripthash ones are tricky. I don't have an example of constructing one. Lbry-sdk does not send them.

I haven't figured it out yet, but see:
https://github.com/btcsuite/btcd/search?p=1&q=AddressScriptHash&type=Code

Yeah.... the scripthash ones are tricky. I don't have an example of constructing one. Lbry-sdk does not send them. I haven't figured it out yet, but see: https://github.com/btcsuite/btcd/search?p=1&q=AddressScriptHash&type=Code
moodyjon commented 2022-09-22 19:02:40 +02:00 (Migrated from github.com)
Review

Just found this. Purports to convert addr to scripthash:
https://github.com/checksum0/go-electrum/blob/b862ac442cf9/electrum/address.go#L14

Just found this. Purports to convert addr to scripthash: https://github.com/checksum0/go-electrum/blob/b862ac442cf9/electrum/address.go#L14
EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
WANT="encoding/hex: invalid byte: U+0047 'G'"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
test_command_with_want
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
## blockchain.scripthash.get_history
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
read -r -d '' CMD <<- EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
curl http://127.0.0.1:50001/rpc -s -H "Content-Type: application/json"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
--data '{"id": 1, "method": "blockchain.scripthash.get_history", "params":[{"scripthash": "bGqWuXRVm5bBqLvLPEQQpvsNxJ5ubc6bwN"}]}'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
| jq .error | sed 's/"//g'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
WANT="encoding/hex: invalid byte: U+0047 'G'"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
test_command_with_want
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
## blockchain.scripthash.listunspent
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
read -r -d '' CMD <<- EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
curl http://127.0.0.1:50001/rpc -s -H "Content-Type: application/json"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
--data '{"id": 1, "method": "blockchain.scripthash.listunspent", "params":[{"scripthash": "bGqWuXRVm5bBqLvLPEQQpvsNxJ5ubc6bwN"}]}'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
| jq .error | sed 's/"//g'
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
EOM
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
WANT="encoding/hex: invalid byte: U+0047 'G'"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
test_command_with_want
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# metrics endpoint testing
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
WANT=0
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
GOT=$(curl http://127.0.0.1:2112/metrics -s | grep requests | grep resolve | awk '{print $NF}')
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
want_greater
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
# caclulate return value
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
logical_or $RES
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
if [ $FINALRES -eq 1 ]; then
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
echo "Failed!"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
exit 1
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
else
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
echo "Passed!"
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
exit 0
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.
fi
moodyjon commented 2022-09-21 19:48:48 +02:00 (Migrated from github.com)
Review

Suggest substituting the value here, and eliminating CHUNK_TEST_RES as it's not reused by other tests.

Suggest substituting the value here, and eliminating `CHUNK_TEST_RES` as it's not reused by other tests.
moodyjon commented 2022-09-21 20:02:27 +02:00 (Migrated from github.com)
Review

Greater than or equal to (-ge). At least for the one test using this, you wouldn't want GOT=0 to pass.

Greater than or equal to (`-ge`). At least for the one test using this, you wouldn't want GOT=0 to pass.
jeffreypicard commented 2022-09-24 08:04:16 +02:00 (Migrated from github.com)
Review

I think I've just transposed the WANT and GOT, but the -gt is correct. I want a number greater than 0.

I think I've just transposed the WANT and GOT, but the `-gt` is correct. I want a number greater than 0.
jeffreypicard commented 2022-09-24 08:28:09 +02:00 (Migrated from github.com)
Review

Actually, nvm, you are right.

Actually, nvm, you are right.

View file

@ -18,6 +18,8 @@ import (
"github.com/lbryio/lbcd/wire"
"github.com/lbryio/lbcutil"
"golang.org/x/exp/constraints"
log "github.com/sirupsen/logrus"
)
// BlockchainBlockService methods handle "blockchain.block.*" RPCs
@ -120,6 +122,7 @@ func (s *BlockchainBlockService) Get_chunk(req *BlockGetChunkReq, resp **BlockGe
index := uint32(*req)
db_headers, err := s.DB.GetHeaders(index*CHUNK_SIZE, CHUNK_SIZE)
if err != nil {
log.Warn(err)
return err
}
raw := make([]byte, 0, HEADER_SIZE*len(db_headers))
@ -141,6 +144,7 @@ func (s *BlockchainBlockService) Get_header(req *BlockGetHeaderReq, resp **Block
height := uint32(*req)
headers, err := s.DB.GetHeaders(height, 1)
if err != nil {
log.Warn(err)
return err
}
if len(headers) < 1 {
@ -171,6 +175,7 @@ func (s *BlockchainBlockService) Headers(req *BlockHeadersReq, resp **BlockHeade
count := min(req.Count, MAX_CHUNK_SIZE)
db_headers, err := s.DB.GetHeaders(req.StartHeight, count)
if err != nil {
log.Warn(err)
return err
}
count = uint32(len(db_headers))
@ -283,18 +288,22 @@ type AddressGetBalanceResp struct {
func (s *BlockchainAddressService) Get_balance(req *AddressGetBalanceReq, resp **AddressGetBalanceResp) error {
address, err := lbcutil.DecodeAddress(req.Address, s.Chain)
if err != nil {
log.Warn(err)
return err
}
script, err := txscript.PayToAddrScript(address)
if err != nil {
log.Warn(err)
return err
}
hashX := hashXScript(script, s.Chain)
confirmed, unconfirmed, err := s.DB.GetBalance(hashX)
if err != nil {
log.Warn(err)
return err
}
*resp = &AddressGetBalanceResp{confirmed, unconfirmed}
return err
}
@ -310,11 +319,13 @@ type ScripthashGetBalanceResp struct {
func (s *BlockchainScripthashService) Get_balance(req *scripthashGetBalanceReq, resp **ScripthashGetBalanceResp) error {
scripthash, err := decodeScriptHash(req.ScriptHash)
if err != nil {
log.Warn(err)
return err
}
hashX := hashX(scripthash)
confirmed, unconfirmed, err := s.DB.GetBalance(hashX)
if err != nil {
log.Warn(err)
return err
}
*resp = &ScripthashGetBalanceResp{confirmed, unconfirmed}
@ -341,15 +352,18 @@ type AddressGetHistoryResp struct {
func (s *BlockchainAddressService) Get_history(req *AddressGetHistoryReq, resp **AddressGetHistoryResp) error {
address, err := lbcutil.DecodeAddress(req.Address, s.Chain)
if err != nil {
log.Warn(err)
return err
}
script, err := txscript.PayToAddrScript(address)
if err != nil {
log.Warn(err)
return err
}
hashX := hashXScript(script, s.Chain)
dbTXs, err := s.DB.GetHistory(hashX)
if err != nil {
log.Warn(err)
return err
}
confirmed := make([]TxInfo, 0, len(dbTXs))
@ -380,11 +394,13 @@ type ScripthashGetHistoryResp struct {
func (s *BlockchainScripthashService) Get_history(req *ScripthashGetHistoryReq, resp **ScripthashGetHistoryResp) error {
scripthash, err := decodeScriptHash(req.ScriptHash)
if err != nil {
log.Warn(err)
return err
}
hashX := hashX(scripthash)
dbTXs, err := s.DB.GetHistory(hashX)
if err != nil {
log.Warn(err)
return err
}
confirmed := make([]TxInfo, 0, len(dbTXs))
@ -412,10 +428,12 @@ type AddressGetMempoolResp []TxInfoFee
func (s *BlockchainAddressService) Get_mempool(req *AddressGetMempoolReq, resp **AddressGetMempoolResp) error {
address, err := lbcutil.DecodeAddress(req.Address, s.Chain)
if err != nil {
log.Warn(err)
return err
}
script, err := txscript.PayToAddrScript(address)
if err != nil {
log.Warn(err)
return err
}
hashX := hashXScript(script, s.Chain)
@ -436,6 +454,7 @@ type ScripthashGetMempoolResp []TxInfoFee
func (s *BlockchainScripthashService) Get_mempool(req *ScripthashGetMempoolReq, resp **ScripthashGetMempoolResp) error {
scripthash, err := decodeScriptHash(req.ScriptHash)
if err != nil {
log.Warn(err)
return err
}
hashX := hashX(scripthash)
@ -462,10 +481,12 @@ type AddressListUnspentResp []TXOInfo
func (s *BlockchainAddressService) Listunspent(req *AddressListUnspentReq, resp **AddressListUnspentResp) error {
address, err := lbcutil.DecodeAddress(req.Address, s.Chain)
if err != nil {
log.Warn(err)
return err
}
script, err := txscript.PayToAddrScript(address)
if err != nil {
log.Warn(err)
return err
}
hashX := hashXScript(script, s.Chain)
@ -494,6 +515,7 @@ type ScripthashListUnspentResp []TXOInfo
func (s *BlockchainScripthashService) Listunspent(req *ScripthashListUnspentReq, resp **ScripthashListUnspentResp) error {
scripthash, err := decodeScriptHash(req.ScriptHash)
if err != nil {
log.Warn(err)
return err
}
hashX := hashX(scripthash)