diff --git a/hive/db/sql_scripts/hive_accounts_info_view.sql b/hive/db/sql_scripts/hive_accounts_info_view.sql index 4f1ef91e97ebbd18047ff23e4ff47eb45fad9496..b8c0a085856a3551e097b70e1f8480e46614b56e 100644 --- a/hive/db/sql_scripts/hive_accounts_info_view.sql +++ b/hive/db/sql_scripts/hive_accounts_info_view.sql @@ -1,3 +1,27 @@ + +DROP VIEW IF EXISTS hive_accounts_info_view_lite; +CREATE OR REPLACE VIEW public.hive_accounts_info_view_lite + AS + SELECT ha.id, + ha.name, + COALESCE(posts.post_count, 0::bigint) AS post_count, + ha.created_at, + ha.reputation, + ha.rank, + ha.following, + ha.followers, + ha.lastread_at, + ha.posting_json_metadata, + ha.json_metadata + FROM hive_accounts ha + LEFT JOIN LATERAL + ( + SELECT COUNT(1) AS post_count + FROM hive_posts hp + WHERE hp.counter_deleted = 0 and hp.author_id = ha.id + ) posts ON true + ; + DROP VIEW IF EXISTS hive_accounts_info_view; CREATE OR REPLACE VIEW public.hive_accounts_info_view AS @@ -46,26 +70,3 @@ CREATE OR REPLACE VIEW public.hive_accounts_info_view LIMIT 1 ) whole_votes ON true ; - -DROP VIEW IF EXISTS hive_accounts_info_view_lite; -CREATE OR REPLACE VIEW public.hive_accounts_info_view_lite - AS - SELECT ha.id, - ha.name, - COALESCE(posts.post_count, 0::bigint) AS post_count, - ha.created_at, - ha.reputation, - ha.rank, - ha.following, - ha.followers, - ha.lastread_at, - ha.posting_json_metadata, - ha.json_metadata - FROM hive_accounts ha - LEFT JOIN LATERAL - ( - SELECT COUNT(1) AS post_count - FROM hive_posts hp - WHERE hp.counter_deleted = 0 and hp.author_id = ha.id - ) posts ON true - ; diff --git a/test-log.txt b/test-log.txt new file mode 100644 index 0000000000000000000000000000000000000000..87ffa72bc55f4e6124bbfc4e315da4dbe0a43a71 --- /dev/null +++ b/test-log.txt @@ -0,0 +1,56 @@ +<?xml version="1.0" encoding="utf-8"?><testsuites><testsuite errors="0" failures="1" hostname="dev7" name="pytest" skipped="0" tests="1" time="0.620" timestamp="2020-11-02T14:41:30.207316"><testcase classname="condenser_api_patterns.get_state.gtg_permlink.tavern.yaml" name="Hivemind condenser_api.get_state patterns test" time="0.524"><failure message="Format variables: service.proto:s = 'http' service.server:s = '127.0.0.1' service.port = '6666' Source test stage (line 10): - name: get_state request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST headers: content-type: application/json json: jsonrpc: "2.0" id: 1 method: "condenser_api.get_state" params: ["/category/@gtg/witness-gtg"] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: method: "gtg_permlink" Formatted stage: name: get_state request: headers: content-type: application/json json: id: 1 jsonrpc: '2.0' method: condenser_api.get_state params: - /category/@gtg/witness-gtg method: POST url: 'http://127.0.0.1:6666/' response: status_code: 200 verify_response_with: extra_kwargs: directory: condenser_api_patterns/get_state method: gtg_permlink function: validate_response:compare_response_with_pattern Errors: E tavern.util.exceptions.TestFailError: Test 'get_state' failed: - Error calling validate function '<function compare_response_with_pattern at 0x7fb40ec70598>': Traceback (most recent call last): File "/home/dev/.local/lib/python3.6/site-packages/tavern/response/base.py", line 141, in _maybe_run_validate_functions vf(response) File "/home/dev/.local/lib/python3.6/site-packages/tavern/schemas/extensions.py", line 123, in inner return func(response, *args, **kwargs) File "/home/dev/src/09.HIVE-HIVEMIND/hivemind/tests/tests_api/hivemind/tavern/validate_response.py", line 74, in compare_response_with_pattern raise PatternDiffException(msg) validate_response.PatternDiffException: Differences detected between response and pattern.">Format variables: + service.proto:s = 'http' + service.server:s = '127.0.0.1' + service.port = '6666' + +Source test stage (line 10): + - name: get_state + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_state" + params: ["/category/@gtg/witness-gtg"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "gtg_permlink" + +Formatted stage: + name: get_state + request: + headers: + content-type: application/json + json: + id: 1 + jsonrpc: '2.0' + method: condenser_api.get_state + params: + - /category/@gtg/witness-gtg + method: POST + url: 'http://127.0.0.1:6666/' + response: + status_code: 200 + verify_response_with: + extra_kwargs: + directory: condenser_api_patterns/get_state + method: gtg_permlink + function: validate_response:compare_response_with_pattern + +Errors: +E tavern.util.exceptions.TestFailError: Test 'get_state' failed: + - Error calling validate function '<function compare_response_with_pattern at 0x7fb40ec70598>': + Traceback (most recent call last): + File "/home/dev/.local/lib/python3.6/site-packages/tavern/response/base.py", line 141, in _maybe_run_validate_functions + vf(response) + File "/home/dev/.local/lib/python3.6/site-packages/tavern/schemas/extensions.py", line 123, in inner + return func(response, *args, **kwargs) + File "/home/dev/src/09.HIVE-HIVEMIND/hivemind/tests/tests_api/hivemind/tavern/validate_response.py", line 74, in compare_response_with_pattern + raise PatternDiffException(msg) + validate_response.PatternDiffException: Differences detected between response and pattern.</failure></testcase></testsuite></testsuites> \ No newline at end of file diff --git a/tests/tests_api b/tests/tests_api index 1ff7e46a13168eebcaabf8e47c01bcfda142832f..063bcd4a4afb6dce306f7f4734a85d7d64487c36 160000 --- a/tests/tests_api +++ b/tests/tests_api @@ -1 +1 @@ -Subproject commit 1ff7e46a13168eebcaabf8e47c01bcfda142832f +Subproject commit 063bcd4a4afb6dce306f7f4734a85d7d64487c36