-
Notifications
You must be signed in to change notification settings - Fork 438
Reenable Elvis checks in CI #4598
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #4598 +/- ##
==========================================
- Coverage 86.06% 86.04% -0.02%
==========================================
Files 563 563
Lines 33732 33761 +29
==========================================
+ Hits 29031 29051 +20
- Misses 4701 4710 +9 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This comment was marked as outdated.
This comment was marked as outdated.
chrzaszcz
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes look good, so we can merge this PR, but I found an important flaw in our elvis checks - see comments.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
ab41b94 to
1b33a6f
Compare
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
5697dba to
57fd2ab
Compare
Fix OTP 27 dialyzer issues, normalize IQ specs, handle CircleCI failed-test reruns safely (spec filtering + avoid skewed Codecov uploads).
57fd2ab to
682f4c5
Compare
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
pawlooss1
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for all the effort ❤️ I have left a few comments, mostly about indentation. I think we could also discuss with the team if we wanted to have a format check in the CI as well to prevent such indentation issues.
src/pubsub/mod_pubsub.erl
Outdated
| -spec iq_command(binary(), any(), jid:jid(), jlib:iq(), any(), [binary()]) -> | ||
| {result, [exml:element()]} | {error, exml:element()}. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This spec should be above its function.
src/cert_utils.erl
Outdated
| catch | ||
| Class:Exception:StackTrace -> | ||
| log_exception(Cert, Class, Exception,StackTrace), | ||
| log_exception(Cert, Class, Exception, StackTrace), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this indent needed by elvis? It makes no sense that the indent is different than in the line bellow. I think that only the whitespace between argument was needed.
src/ejabberd_sm_mnesia.erl
Outdated
| mnesia:dirty_select( | ||
| session, | ||
| [{#session{usr = '$1', sid='$2', priority='$3', info='$4', _ = '_' }, | ||
| [{#session{usr = '$1', sid = '$2', priority = '$3', info = '$4', _ = '_'}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similar to the previous comment, the indent looks weird.
src/eldap_utils.erl
Outdated
| TailLength = byte_size(P) - (First + 1), | ||
| binary:part(S, First, byte_size(S) - TailLength - First + 1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This indent should be the same as in the line {First, _} = binary:match(P, <<"%u">>),, so the whole fun's body has the same indent.
src/eldap_utils.erl
Outdated
| maybe_b2list(B) when is_binary(B) -> | ||
| binary_to_list(B); | ||
| binary_to_list(B); | ||
| maybe_b2list(L) when is_list(L) -> | ||
| L; | ||
| L; | ||
| maybe_b2list(O) -> | ||
| {error, {unknown_type, O}}. | ||
| {error, {unknown_type, O}}. | ||
|
|
||
| maybe_list2b(L) when is_list(L) -> | ||
| list_to_binary(L); | ||
| list_to_binary(L); | ||
| maybe_list2b(B) when is_binary(B) -> | ||
| B; | ||
| B; | ||
| maybe_list2b(O) -> | ||
| {error, {unknown_type, O}}. | ||
| {error, {unknown_type, O}}. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here, the indent should be as in all other functions, i.e. 4 spaces.
src/mod_bosh_socket.erl
Outdated
| _ = try mongoose_c2s:stop(S#state.c2s_pid, normal) | ||
| catch | ||
| _:_ -> ok | ||
| end, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks even worse than before IMO. However, when I looked at mongoose_c2s:stop/2 code it only calls gen_statem:cast/2 which according to documentation should return ok immediately. If you don't know a reason that it could crash then maybe we should remove this catch entirely?
test/component_reg_SUITE.erl
Outdated
| opts() -> | ||
| #{hosts => [], | ||
| host_types => [], | ||
| host_types => [], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This indent feels wrong too.
|
elasticsearch_and_cassandra_28 / elasticsearch_and_cassandra_mnesia / 1387311 small_tests_27 / small_tests / 1387311 small_tests_28 / small_tests / 1387311 small_tests_28_arm64 / small_tests / 1387311 ldap_mnesia_27 / ldap_mnesia / 1387311 ldap_mnesia_28 / ldap_mnesia / 1387311 dynamic_domains_mysql_redis_28 / mysql_redis / 1387311 internal_mnesia_28 / internal_mnesia / 1387311 pgsql_cets_28 / pgsql_cets / 1387311 dynamic_domains_pgsql_mnesia_27 / pgsql_mnesia / 1387311 dynamic_domains_pgsql_mnesia_28 / pgsql_mnesia / 1387311 cockroachdb_cets_28 / cockroachdb_cets / 1387311 pubsub_SUITE:dag+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3600@localhost/res1">>,
escalus_tcp,<0.115616.0>,
[{event_manager,<0.115604.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3600">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.115604.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3600">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3600">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3600">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"7a25a70c702d3358">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:dag+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3604@localhost/res1">>,
escalus_tcp,<0.115695.0>,
[{event_manager,<0.115690.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3604">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.115690.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3604">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3604">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3604">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"82958215beda08e3">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:dag+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3607@localhost/res1">>,
escalus_tcp,<0.115769.0>,
[{event_manager,<0.115767.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3607">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.115767.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3607">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3607">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3607">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"165baa75c6ad0cd6">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:tree+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3662@localhost/res1">>,
escalus_tcp,<0.117055.0>,
[{event_manager,<0.117052.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3662">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.117052.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3662">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3662">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3662">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"1ff085e61c58d01c">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:tree+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3665@localhost/res1">>,
escalus_tcp,<0.117132.0>,
[{event_manager,<0.117129.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3665">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.117129.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3665">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3665">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3665">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"de6138ab15831bd3">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:tree+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3667@localhost/res1">>,
escalus_tcp,<0.117209.0>,
[{event_manager,<0.117197.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3667">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.117197.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3667">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3667">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3667">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"343f87ab78da8d24">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:tree+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3670@localhost/res1">>,
escalus_tcp,<0.117284.0>,
[{event_manager,<0.117274.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3670">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.117274.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3670">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3670">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3670">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"19ae341c79cff276">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pgsql_mnesia_27 / pgsql_mnesia / 1387311 pgsql_mnesia_28 / pgsql_mnesia / 1387311 mysql_redis_28 / mysql_redis / 1387311 amp_big_SUITE:mam:mam_failure:notify_deliver_to_online_user_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"bob_notify_deliver_to_online_user_test_184@localhost/res1">>,
escalus_tcp,<0.6587.0>,
[{event_manager,<0.6123.0>},
{server,<<"localhost">>},
{username,<<"bOb_notify_deliver_to_online_user_test_184">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.6123.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_online_user_test_184">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,<<"bob_notify_deliver_to_online_user_test_184">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,<<"bOb_notify_deliver_to_online_user_test_184">>},
{server,<<"localhost">>},
{password,<<"makrolika">>},
{stream_id,<<"186a894f59b5761d">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_message,2,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,802}]},
{amp_big_SUITE,'-notify_deliver_to_online_user_test/1-fun-0-',3,
[{file,
...amp_big_SUITE:mam:mam_failure:notify_deliver_to_online_user_bare_jid_test{error,{{badmatch,0},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl,3,[{file,"lists.erl"},{line,2466}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2432}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]}]}}amp_big_SUITE:mam:mam_failure:notify_deliver_to_online_user_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_online_user_test_186@localhost/res1">>,
escalus_tcp,<0.6577.0>,
[{event_manager,<0.6154.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_test_186">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.6154.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_test_186">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_online_user_test_186">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_online_user_test_186">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"d21007e09b31687e">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_notification,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,806}]},
{amp_big_SUITE,'-notify_deliver_t...amp_big_SUITE:mam:mam_failure:notify_deliver_to_offline_user_test{error,{{badmatch,0},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl,3,[{file,"lists.erl"},{line,2466}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{amp_big_SUITE,notify_deliver_to_offline_user_test,1,
[{file,"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,363}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]}]}}amp_big_SUITE:mam:mam_failure:notify_deliver_to_unknown_domain_test{error,{{badmatch,0},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl,3,[{file,"lists.erl"},{line,2466}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]},
{test_server,run_test_case_eval1,6,
[{file,"test_server.erl"},{line,1305}]}]}}amp_big_SUITE:mam:mam_failure:notify_deliver_to_online_user_broken_connection_test{error,{{badmatch,0},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl,3,[{file,"lists.erl"},{line,2466}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{amp_big_SUITE,notify_deliver_to_online_user_broken_connection_test,
1,
[{file,"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,331}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]}]}}amp_big_SUITE:mam:mam_failure:notify_deliver_to_unknown_domain_test{error,{{badmatch,0},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl,3,[{file,"lists.erl"},{line,2466}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]},
{test_server,run_test_case_eval1,6,
[{file,"test_server.erl"},{line,1305}]}]}}amp_big_SUITE:mam:mam_failure:notify_deliver_to_unknown_domain_test{error,{{badmatch,0},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl,3,[{file,"lists.erl"},{line,2466}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]},
{test_server,run_test_case_eval1,6,
[{file,"test_server.erl"},{line,1305}]}]}}amp_big_SUITE:mam:mam_failure:notify_deliver_to_offline_user_test{error,{{badmatch,0},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl,3,[{file,"lists.erl"},{line,2466}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{amp_big_SUITE,notify_deliver_to_offline_user_test,1,
[{file,"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,363}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]}]}}amp_big_SUITE:mam:mam_failure:notify_deliver_to_offline_user_test{error,{{badmatch,0},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl,3,[{file,"lists.erl"},{line,2466}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{amp_big_SUITE,notify_deliver_to_offline_user_test,1,
[{file,"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,363}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]}]}}amp_big_SUITE:mam:mam_failure:notify_deliver_to_stranger_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_stranger_test_199@localhost/res1">>,
escalus_tcp,<0.6641.0>,
[{event_manager,<0.6357.0>},
{server,<<"localhost">>},
{username,<<"alicE_notify_deliver_to_stranger_test_199">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.6357.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_stranger_test_199">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,<<"alice_notify_deliver_to_stranger_test_199">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,<<"alicE_notify_deliver_to_stranger_test_199">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"8f12d1e63213cc25">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_generic_error,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,794}]},
{amp_big_SUITE,'-notify_deliver_to_stranger_test/1-fun-0-',2,
[{file,
"/...amp_big_SUITE:mam:mam_failure:notify_deliver_to_stranger_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_stranger_test_200@localhost/res1">>,
escalus_tcp,<0.6643.0>,
[{event_manager,<0.6366.0>},
{server,<<"localhost">>},
{username,<<"alicE_notify_deliver_to_stranger_test_200">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.6366.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_stranger_test_200">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,<<"alice_notify_deliver_to_stranger_test_200">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,<<"alicE_notify_deliver_to_stranger_test_200">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"0b42a5811893cd8e">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_notification,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,806}]},
{amp_big_SUITE,'-notify_deliver_to_stranger_test/1-fun-0-',2,
[{file,
"/h...amp_big_SUITE:mam:mam_failure:notify_deliver_to_stranger_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_stranger_test_201@localhost/res1">>,
escalus_tcp,<0.6642.0>,
[{event_manager,<0.6375.0>},
{server,<<"localhost">>},
{username,<<"alicE_notify_deliver_to_stranger_test_201">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.6375.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_stranger_test_201">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,<<"alice_notify_deliver_to_stranger_test_201">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,<<"alicE_notify_deliver_to_stranger_test_201">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"27b0c04115283db2">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_notification,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,806}]},
{amp_big_SUITE,'-notify_deliver_to_stranger_test/1-fun-0-',2,
[{file,
"/h...amp_big_SUITE:mam:mam_failure:notify_deliver_to_stranger_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_stranger_test_198@localhost/res1">>,
escalus_tcp,<0.6644.0>,
[{event_manager,<0.6348.0>},
{server,<<"localhost">>},
{username,<<"alicE_notify_deliver_to_stranger_test_198">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.6348.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_stranger_test_198">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,<<"alice_notify_deliver_to_stranger_test_198">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,<<"alicE_notify_deliver_to_stranger_test_198">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"0e4537b605f8ba47">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_generic_error,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,794}]},
{amp_big_SUITE,'-notify_deliver_to_stranger_test/1-fun-0-',2,
[{file,
"/...amp_big_SUITE:mam:mam_failure:notify_deliver_to_unknown_domain_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_unknown_domain_test_202@localhost/res1">>,
escalus_tcp,<0.6645.0>,
[{event_manager,<0.6384.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_202">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.6384.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_202">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_unknown_domain_test_202">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_202">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"d950b94ec6678a4b">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_generic_error,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,794}]},
{amp_big_SUITE,'-...amp_big_SUITE:mam:mam_failure:notify_deliver_to_offline_user_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_offline_user_test_193@localhost/res1">>,
escalus_tcp,<0.6650.0>,
[{event_manager,<0.6260.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_offline_user_test_193">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.6260.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_offline_user_test_193">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_offline_user_test_193">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_offline_user_test_193">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"4e4b14a93cdba7c6">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_notification,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,806}]},
{amp_big_SUITE,'-notify_deli...amp_big_SUITE:mam:mam_failure:error_deliver_to_stranger_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_error_deliver_to_stranger_test_215@localhost/res1">>,
escalus_tcp,<0.6657.0>,
[{event_manager,<0.6503.0>},
{server,<<"localhost">>},
{username,<<"alicE_error_deliver_to_stranger_test_215">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.6503.0>},
{server,<<"localhost">>},
{username,
<<"alicE_error_deliver_to_stranger_test_215">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,<<"alice_error_deliver_to_stranger_test_215">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,<<"alicE_error_deliver_to_stranger_test_215">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"c486404628349418">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_generic_error,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,794}]},
{amp_big_SUITE,'-error_deliver_to_stranger_test/1-fun-0-',2,
[{file,
"/home/c...amp_big_SUITE:mam:mam_failure:drop_deliver_to_online_user_test{error,{{badmatch,0},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl,3,[{file,"lists.erl"},{line,2466}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]},
{test_server,run_test_case_eval1,6,
[{file,"test_server.erl"},{line,1305}]}]}}amp_big_SUITE:mam:mam_failure:drop_deliver_to_stranger_test{error,{{badmatch,0},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl,3,[{file,"lists.erl"},{line,2466}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]},
{test_server,run_test_case_eval1,6,
[{file,"test_server.erl"},{line,1305}]}]}}amp_big_SUITE:mam:mam_failure:notify_deliver_to_online_user_bare_jid_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"bob_notify_deliver_to_online_user_bare_jid_test_188@localhost/res1">>,
escalus_tcp,<0.6659.0>,
[{event_manager,<0.6179.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_online_user_bare_jid_test_188">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.6179.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_online_user_bare_jid_test_188">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"bob_notify_deliver_to_online_user_bare_jid_test_188">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"bOb_notify_deliver_to_online_user_bare_jid_test_188">>},
{server,<<"localhost">>},
{password,<<"makrolika">>},
{stream_id,<<"efeb8eda6c05482d">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_message,2,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,802}]},
{am...amp_big_SUITE:mam:mam_failure:notify_deliver_to_online_user_bare_jid_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_online_user_bare_jid_test_189@localhost/res1">>,
escalus_tcp,<0.6639.0>,
[{event_manager,<0.6188.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_bare_jid_test_189">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.6188.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_bare_jid_test_189">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_online_user_bare_jid_test_189">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_online_user_bare_jid_test_189">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"96b497076f239760">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_notification,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,8...amp_big_SUITE:mam:mam_failure:drop_deliver_to_online_user_test{error,{{badmatch,0},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl,3,[{file,"lists.erl"},{line,2466}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]},
{test_server,run_test_case_eval1,6,
[{file,"test_server.erl"},{line,1305}]}]}}amp_big_SUITE:mam:mam_failure:error_deliver_to_stranger_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_error_deliver_to_stranger_test_214@localhost/res1">>,
escalus_tcp,<0.6661.0>,
[{event_manager,<0.6494.0>},
{server,<<"localhost">>},
{username,<<"alicE_error_deliver_to_stranger_test_214">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.6494.0>},
{server,<<"localhost">>},
{username,
<<"alicE_error_deliver_to_stranger_test_214">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,<<"alice_error_deliver_to_stranger_test_214">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,<<"alicE_error_deliver_to_stranger_test_214">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"125f57f6b4a06c02">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_generic_error,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,794}]},
{amp_big_SUITE,'-error_deliver_to_stranger_test/1-fun-0-',2,
[{file,
"/home/c...amp_big_SUITE:mam:mam_failure:notify_deliver_to_online_user_bare_jid_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"bob_notify_deliver_to_online_user_bare_jid_test_187@localhost/res1">>,
escalus_tcp,<0.6658.0>,
[{event_manager,<0.6170.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_online_user_bare_jid_test_187">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.6170.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_online_user_bare_jid_test_187">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"bob_notify_deliver_to_online_user_bare_jid_test_187">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"bOb_notify_deliver_to_online_user_bare_jid_test_187">>},
{server,<<"localhost">>},
{password,<<"makrolika">>},
{stream_id,<<"ef10865662ac2c12">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_message,2,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,802}]},
{am...amp_big_SUITE:mam:mam_failure:error_deliver_to_offline_user_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_error_deliver_to_offline_user_test_211@localhost/res1">>,
escalus_tcp,<0.6705.0>,
[{event_manager,<0.6466.0>},
{server,<<"localhost">>},
{username,
<<"alicE_error_deliver_to_offline_user_test_211">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.6466.0>},
{server,<<"localhost">>},
{username,
<<"alicE_error_deliver_to_offline_user_test_211">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_error_deliver_to_offline_user_test_211">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_error_deliver_to_offline_user_test_211">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"75b07be1abef41da">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_amp_error,4,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,789}]},
{escalus_story,story,4,
[{fil...70 errors were truncated mysql_redis_28 / mysql_redis / 1387311 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My main comment is: why are some changes related to test rerunning mixed in here? This is a substantial PR in itself, and all these unrelated changes should be split to a separate PR.
test/amp_resolver_SUITE.erl
Outdated
| #{strategy => Strategy, rule => Rule}, | ||
| #{}), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One extra space of indentation
test/muc_light_SUITE.erl
Outdated
| % changes list applied to old list should produce the same result | ||
| {ok, NewAffUsers1, _, _, _} = mod_muc_light_utils:change_aff_users(host_type(), AffUsers, AffUsersChanged), | ||
| ChangeRes = mod_muc_light_utils:change_aff_users(host_type(), AffUsers, | ||
| AffUsersChanged), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One space too many?
elvis.config
Outdated
| {elvis_style, god_modules, disable}, | ||
| {elvis_style, no_throw, disable}, | ||
| {elvis_style, no_operation_on_same_value, disable}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indentation?
elvis.config
Outdated
| {elvis_style, god_modules, disable}, | ||
| {elvis_style, no_throw, disable}, | ||
| {elvis_style, no_operation_on_same_value, disable}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indentation?
|
elasticsearch_and_cassandra_28 / elasticsearch_and_cassandra_mnesia / 99149bb small_tests_28 / small_tests / 99149bb small_tests_27 / small_tests / 99149bb small_tests_28_arm64 / small_tests / 99149bb ldap_mnesia_27 / ldap_mnesia / 99149bb ldap_mnesia_28 / ldap_mnesia / 99149bb dynamic_domains_mysql_redis_28 / mysql_redis / 99149bb dynamic_domains_pgsql_mnesia_27 / pgsql_mnesia / 99149bb internal_mnesia_28 / internal_mnesia / 99149bb pubsub_SUITE:tree+basic:subscribe_options_separate_request_test{error,{{badmatch,false},
[{pubsub_tools,check_response,2,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,455}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,445}]},
{pubsub_tools,receive_and_check_response,4,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,435}]},
{pubsub_SUITE,'-subscribe_options_separate_request_test/1-fun-2-',2,
[{file,"/home/circleci/project/big_tests/tests/pubsub_SUITE.erl"},
{line,446}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,75}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]},
{test_server,run_test_case_eval1,6,
[{file,"test_server.erl"},{line,1305}]},
{test_server,run_test_case_eval,9,
[{file,"test_server.erl"},{line,1237}]}]}}dynamic_domains_pgsql_mnesia_28 / pgsql_mnesia / 99149bb pgsql_cets_28 / pgsql_cets / 99149bb cockroachdb_cets_28 / cockroachdb_cets / 99149bb pubsub_SUITE:dag+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3722@localhost/res1">>,
escalus_tcp,<0.115753.0>,
[{event_manager,<0.115751.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3722">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.115751.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3722">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3722">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3722">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"5b4539424cbf94c2">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...mysql_redis_28 / mysql_redis / 99149bb pgsql_mnesia_27 / pgsql_mnesia / 99149bb pgsql_mnesia_28 / pgsql_mnesia / 99149bb internal_mnesia_28 / internal_mnesia / 99149bb pubsub_SUITE:tree+basic:discover_nodes_test{error,{{badmatch,false},
[{pubsub_tools,check_response,2,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,455}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,445}]},
{pubsub_tools,receive_and_check_response,4,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,435}]},
{pubsub_SUITE,'-discover_nodes_test/1-fun-0-',2,
[{file,"/home/circleci/project/big_tests/tests/pubsub_SUITE.erl"},
{line,302}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,75}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]},
{test_server,run_test_case_eval1,6,
[{file,"test_server.erl"},{line,1305}]},
{test_server,run_test_case_eval,9,
[{file,"test_server.erl"},{line,1237}]}]}}internal_mnesia_28 / internal_mnesia / 99149bb |
|
elasticsearch_and_cassandra_28 / elasticsearch_and_cassandra_mnesia / 5cbaa4a small_tests_27 / small_tests / 5cbaa4a small_tests_28 / small_tests / 5cbaa4a small_tests_28_arm64 / small_tests / 5cbaa4a ldap_mnesia_27 / ldap_mnesia / 5cbaa4a ldap_mnesia_28 / ldap_mnesia / 5cbaa4a dynamic_domains_mysql_redis_28 / mysql_redis / 5cbaa4a internal_mnesia_28 / internal_mnesia / 5cbaa4a dynamic_domains_pgsql_mnesia_28 / pgsql_mnesia / 5cbaa4a pgsql_cets_28 / pgsql_cets / 5cbaa4a pgsql_mnesia_27 / pgsql_mnesia / 5cbaa4a mysql_redis_28 / mysql_redis / 5cbaa4a cockroachdb_cets_28 / cockroachdb_cets / 5cbaa4a pubsub_SUITE:dag+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3687@localhost/res1">>,
escalus_tcp,<0.115794.0>,
[{event_manager,<0.115783.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3687">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.115783.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3687">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3687">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3687">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"27684f0dec23fb45">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:dag+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3689@localhost/res1">>,
escalus_tcp,<0.115872.0>,
[{event_manager,<0.115851.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3689">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.115851.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3689">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3689">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3689">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"24c7510decf4ce66">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:tree+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3746@localhost/res1">>,
escalus_tcp,<0.117156.0>,
[{event_manager,<0.117153.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3746">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.117153.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3746">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3746">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3746">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"7aea34bb11eee358">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...dynamic_domains_pgsql_mnesia_27 / pgsql_mnesia / 5cbaa4a pgsql_mnesia_28 / pgsql_mnesia / 5cbaa4a graphql_last_SUITE:admin_cli:admin_last_configured:admin_last:admin_count_active_users{error,{{assertEqual,[{module,graphql_last_SUITE},
{line,312},
{expression,"get_ok_value ( p ( countActiveUsers ) , Res1 )"},
{expected,2},
{value,1}]},
[{graphql_last_SUITE,admin_count_active_users_story,3,
[{file,"/home/circleci/project/big_tests/tests/graphql_last_SUITE.erl"},
{line,312}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,75}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]},
{test_server,run_test_case_eval1,6,
[{file,"test_server.erl"},{line,1305}]},
{test_server,run_test_case_eval,9,
[{file,"test_server.erl"},{line,1237}]}]}}pgsql_mnesia_28 / pgsql_mnesia / 5cbaa4a |
|
elasticsearch_and_cassandra_28 / elasticsearch_and_cassandra_mnesia / 5a5f15c small_tests_27 / small_tests / 5a5f15c small_tests_28 / small_tests / 5a5f15c small_tests_28_arm64 / small_tests / 5a5f15c ldap_mnesia_28 / ldap_mnesia / 5a5f15c ldap_mnesia_27 / ldap_mnesia / 5a5f15c dynamic_domains_mysql_redis_28 / mysql_redis / 5a5f15c dynamic_domains_pgsql_mnesia_28 / pgsql_mnesia / 5a5f15c internal_mnesia_28 / internal_mnesia / 5a5f15c pubsub_SUITE:tree+basic:subscribe_options_separate_request_test{error,{{badmatch,false},
[{pubsub_tools,check_response,2,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,455}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,445}]},
{pubsub_tools,receive_and_check_response,4,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,435}]},
{pubsub_SUITE,'-subscribe_options_separate_request_test/1-fun-2-',2,
[{file,"/home/circleci/project/big_tests/tests/pubsub_SUITE.erl"},
{line,446}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,75}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]},
{test_server,run_test_case_eval1,6,
[{file,"test_server.erl"},{line,1305}]},
{test_server,run_test_case_eval,9,
[{file,"test_server.erl"},{line,1237}]}]}}dynamic_domains_pgsql_mnesia_27 / pgsql_mnesia / 5a5f15c pgsql_cets_28 / pgsql_cets / 5a5f15c cockroachdb_cets_28 / cockroachdb_cets / 5a5f15c pubsub_SUITE:tree+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3733@localhost/res1">>,
escalus_tcp,<0.116722.0>,
[{event_manager,<0.116719.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3733">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.116719.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3733">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3733">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3733">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"c55ca8fa3a0a2762">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pgsql_mnesia_28 / pgsql_mnesia / 5a5f15c mysql_redis_28 / mysql_redis / 5a5f15c carboncopy_SUITE:one2one:unavailable_resources_dont_get_carbons{error,
{{assertion_failed,assert_many,true,
[is_presence,is_presence],
[{xmlel,<<"message">>,
#{<<"from">> =>
<<"alice_unavailable_resources_dont_get_carbons_1238@localhost">>,
<<"to">> =>
<<"alice_unavailable_resources_dont_get_carbons_1238@localhost/res1">>,
<<"type">> => <<"chat">>,<<"xmlns">> => <<"jabber:client">>},
[{xmlel,<<"received">>,
#{<<"xmlns">> => <<"urn:xmpp:carbons:2">>},
[{xmlel,<<"forwarded">>,
#{<<"xmlns">> => <<"urn:xmpp:forward:0">>},
[{xmlel,<<"message">>,
#{<<"from">> =>
<<"bob_unavailable_resources_dont_get_carbons_1238@localhost/res1">>,
<<"to">> =>
<<"alice_unavailable_resources_dont_get_carbons_1238@localhost/res2">>,
<<"type">> => <<"chat">>,
<<"xmlns">> => <<"jabber:client">>},
[{xmlel,<<"body">>,#{},
[{xmlcdata,<<"And pious action">>,
escaped}]}]}]}]}]},
{xmlel,<<"presence">>,
#{<<"from">> =>
<<"alice_unavailable_resources_dont_get_carbons_1238@localhost/res2">>,
<<"to">> =>
<<"alice_unavailable_resources_dont_get_carbons_1238@localhost/res1">>},
[{xmlel,<<"delay">>,
#{<<"from">> =>
<<"alice_unavailable_resources_dont_get_carbons_1238@localhost/res2">>,
<<"stamp">> => <<"2025-12-19T17:08:25.716240Z"...pgsql_mnesia_27 / pgsql_mnesia / 5a5f15c |
|
elasticsearch_and_cassandra_28 / elasticsearch_and_cassandra_mnesia / 48f4391 small_tests_27 / small_tests / 48f4391 small_tests_28 / small_tests / 48f4391 small_tests_28_arm64 / small_tests / 48f4391 ldap_mnesia_27 / ldap_mnesia / 48f4391 ldap_mnesia_28 / ldap_mnesia / 48f4391 dynamic_domains_mysql_redis_28 / mysql_redis / 48f4391 internal_mnesia_28 / internal_mnesia / 48f4391 dynamic_domains_pgsql_mnesia_27 / pgsql_mnesia / 48f4391 dynamic_domains_pgsql_mnesia_28 / pgsql_mnesia / 48f4391 pgsql_cets_28 / pgsql_cets / 48f4391 mysql_redis_28 / mysql_redis / 48f4391 amp_big_SUITE:basic:notify_deliver_to_online_user_test{error,
{{assertion_failed,assert,#Fun<amp_big_SUITE.29.103345310>,
[<<"notify">>,
<<"bob_notify_deliver_to_online_user_test_61@localhost/res1">>,
<<"alice_notify_deliver_to_online_user_test_61@localhost/res1">>,
[{deliver,direct,notify}]],
{xmlel,<<"message">>,
#{<<"from">> => <<"localhost">>,
<<"id">> => <<"22d90f4b168b21746edf115316011b4c">>,
<<"to">> =>
<<"alice_notify_deliver_to_online_user_test_61@localhost/res1">>},
[{xmlel,<<"amp">>,
#{<<"from">> =>
<<"alice_notify_deliver_to_online_user_test_61@localhost/res1">>,
<<"status">> => <<"notify">>,
<<"to">> =>
<<"bob_notify_deliver_to_online_user_test_61@localhost/res1">>,
<<"xmlns">> => <<"http://jabber.org/protocol/amp">>},
[{xmlel,<<"rule">>,
#{<<"action">> => <<"notify">>,
<<"condition">> => <<"deliver">>,
<<"value">> => <<"none">>},
[]}]}]},
"<message from='localhost' id='22d90f4b168b21746edf115316011b4c' to='alice_notify_deliver_to_online_user_test_61@localhost/res1'><amp from='alice_notify_deliver_to_online_user_test_61@localhost/res1' status='notify' to='bob_notify_deliver_to_online_user_test_61@localhost/res1' xmlns='http://jabber.org/protocol/amp'><rule action='notify' condition='deliver' value='none'/></amp></message>"},
[{escalus_new_assert,assert_true,2,
[{file,
"/home/circleci/project/big_te...amp_big_SUITE:basic:notify_match_resource_exact_test{error,{{badmatch,1},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl_1,3,[{file,"lists.erl"},{line,2471}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2432}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]}]}}amp_big_SUITE:basic:notify_deliver_to_unknown_domain_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_unknown_domain_test_83@localhost/res1">>,
escalus_tcp,<0.3693.0>,
[{event_manager,<0.3365.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_83">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3365.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_83">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_unknown_domain_test_83">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_83">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"dcccfdd9c2268c81">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_generic_error,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,794}]},
{amp_big_SUITE,'-notif...amp_big_SUITE:basic:last_rule_applies_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,<<"alice_last_rule_applies_test_55@localhost/res1">>,
escalus_tcp,<0.3640.0>,
[{event_manager,<0.3105.0>},
{server,<<"localhost">>},
{username,<<"alicE_last_rule_applies_test_55">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3105.0>},
{server,<<"localhost">>},
{username,<<"alicE_last_rule_applies_test_55">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,<<"alice_last_rule_applies_test_55">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,<<"alicE_last_rule_applies_test_55">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"8074aec288b75829">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_notification,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,806}]},
{amp_big_SUITE,'-last_rule_applies_test/1-fun-0-',2,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,718}]},
...amp_big_SUITE:basic:notify_deliver_to_unknown_domain_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_unknown_domain_test_87@localhost/res1">>,
escalus_tcp,<0.3726.0>,
[{event_manager,<0.3402.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_87">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3402.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_87">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_unknown_domain_test_87">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_87">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"8ed563e2851b862a">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_generic_error,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,794}]},
{amp_big_SUITE,'-notif...amp_big_SUITE:basic:unsupported_actions_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,<<"alice_unsupported_actions_test_56@localhost/res1">>,
escalus_tcp,<0.3663.0>,
[{event_manager,<0.3120.0>},
{server,<<"localhost">>},
{username,<<"alicE_unsupported_actions_test_56">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3120.0>},
{server,<<"localhost">>},
{username,<<"alicE_unsupported_actions_test_56">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,<<"alice_unsupported_actions_test_56">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,<<"alicE_unsupported_actions_test_56">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"1d676c10fa43a458">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_amp_error,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,783}]},
{escalus_story,story,4,
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,75}]},
...amp_big_SUITE:basic:notify_match_resource_any_test{error,{{badmatch,1},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl_1,3,[{file,"lists.erl"},{line,2471}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2432}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]}]}}amp_big_SUITE:basic:notify_deliver_to_unknown_domain_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_unknown_domain_test_89@localhost/res1">>,
escalus_tcp,<0.3737.0>,
[{event_manager,<0.3422.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_89">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3422.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_89">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_unknown_domain_test_89">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_89">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"2c623d00a86ed6ac">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_generic_error,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,794}]},
{amp_big_SUITE,'-notif...amp_big_SUITE:basic:drop_deliver_to_offline_user_test{error,{{badmatch,0},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl,3,[{file,"lists.erl"},{line,2466}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{amp_big_SUITE,drop_deliver_to_offline_user_test,1,
[{file,"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,658}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]}]}}amp_big_SUITE:basic:notify_deliver_to_unknown_domain_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_unknown_domain_test_88@localhost/res1">>,
escalus_tcp,<0.3736.0>,
[{event_manager,<0.3412.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_88">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3412.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_88">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_unknown_domain_test_88">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_88">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"28f8669ef846356e">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_generic_error,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,794}]},
{amp_big_SUITE,'-notif...amp_big_SUITE:basic:notify_deliver_to_online_user_recipient_privacy_test{error,{{badmatch,0},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl,3,[{file,"lists.erl"},{line,2466}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2432}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]}]}}amp_big_SUITE:basic:notify_deliver_to_online_user_bare_jid_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"bob_notify_deliver_to_online_user_bare_jid_test_63@localhost/res1">>,
escalus_tcp,<0.3780.0>,
[{event_manager,<0.3183.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_online_user_bare_jid_test_63">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3183.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_online_user_bare_jid_test_63">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"bob_notify_deliver_to_online_user_bare_jid_test_63">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"bOb_notify_deliver_to_online_user_bare_jid_test_63">>},
{server,<<"localhost">>},
{password,<<"makrolika">>},
{stream_id,<<"1ad7707d34c6094c">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_message,2,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,802}]},
{amp_big...amp_big_SUITE:basic:notify_match_resource_other_bare_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_match_resource_other_bare_test_57@localhost/res1">>,
escalus_tcp,<0.3670.0>,
[{event_manager,<0.3129.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_match_resource_other_bare_test_57">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3129.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_match_resource_other_bare_test_57">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_match_resource_other_bare_test_57">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_match_resource_other_bare_test_57">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"de32f41103df8e1c">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_notification,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,806}]},
{amp_big_SUITE,'-notify...amp_big_SUITE:basic:notify_deliver_to_online_user_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"bob_notify_deliver_to_online_user_test_60@localhost/res1">>,
escalus_tcp,<0.3765.0>,
[{event_manager,<0.3156.0>},
{server,<<"localhost">>},
{username,<<"bOb_notify_deliver_to_online_user_test_60">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3156.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_online_user_test_60">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,<<"bob_notify_deliver_to_online_user_test_60">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,<<"bOb_notify_deliver_to_online_user_test_60">>},
{server,<<"localhost">>},
{password,<<"makrolika">>},
{stream_id,<<"8c8a1e5376527e4b">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_message,2,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,802}]},
{amp_big_SUITE,'-notify_deliver_to_online_user_test/1-fun-0-',3,
[{file,
"/hom...amp_big_SUITE:basic:notify_deliver_to_online_user_bare_jid_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_online_user_bare_jid_test_65@localhost/res1">>,
escalus_tcp,<0.3677.0>,
[{event_manager,<0.3201.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_bare_jid_test_65">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3201.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_bare_jid_test_65">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_online_user_bare_jid_test_65">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_online_user_bare_jid_test_65">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"b691f216ad4cb41c">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_notification,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,806}]}...amp_big_SUITE:basic:notify_deliver_to_online_user_bare_jid_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_online_user_bare_jid_test_62@localhost/res1">>,
escalus_tcp,<0.3728.0>,
[{event_manager,<0.3174.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_bare_jid_test_62">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3174.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_bare_jid_test_62">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_online_user_bare_jid_test_62">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_online_user_bare_jid_test_62">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"6a752c945e06ec2f">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_notification,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,806}]}...amp_big_SUITE:basic:notify_deliver_to_online_user_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_online_user_test_58@localhost/res1">>,
escalus_tcp,<0.3671.0>,
[{event_manager,<0.3138.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_test_58">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3138.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_test_58">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_online_user_test_58">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_online_user_test_58">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"6688d9b5a8d934a4">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_notification,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,806}]},
{amp_big_SUITE,'-notify_deliver_to_onl...amp_big_SUITE:basic:notify_deliver_to_online_user_recipient_privacy_test{error,{{assertion_failed,assert_many,false,
[is_iq_result,is_privacy_set],
[],[]},
[{escalus_new_assert,assert_true,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_new_assert.erl"},
{line,88}]},
{privacy_helper,verify_set_list_response,2,
[{file,"/home/circleci/project/big_tests/tests/privacy_helper.erl"},
{line,51}]},
{privacy_helper,set_list,2,
[{file,"/home/circleci/project/big_tests/tests/privacy_helper.erl"},
{line,38}]},
{privacy_helper,set_and_activate,2,
[{file,"/home/circleci/project/big_tests/tests/privacy_helper.erl"},
{line,21}]},
{amp_big_SUITE,'-do_notify_deliver_to_online_user_recipient_privacy_test/1-fun-0-',
3,
[{file,"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,315}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,75}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]},
{test_server,run_test_case_eval1,6,
[{file,"test_server.erl"},{line,1305}]}]}}amp_big_SUITE:basic:notify_deliver_to_online_user_broken_connection_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_online_user_broken_connection_test_80@localhost/res1">>,
escalus_tcp,<0.3745.0>,
[{event_manager,<0.3338.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_broken_connection_test_80">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3338.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_broken_connection_test_80">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_online_user_broken_connection_test_80">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_online_user_broken_connection_test_80">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"daa637e9f4b2ffda">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_notification,3,
[{file,
"/home/circleci/project/big_tests/te...amp_big_SUITE:basic:notify_deliver_to_online_user_broken_connection_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_online_user_broken_connection_test_81@localhost/res1">>,
escalus_tcp,<0.3754.0>,
[{event_manager,<0.3347.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_broken_connection_test_81">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3347.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_broken_connection_test_81">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_online_user_broken_connection_test_81">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_online_user_broken_connection_test_81">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"4340c803916ed59f">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_notification,3,
[{file,
"/home/circleci/project/big_tests/te...amp_big_SUITE:basic:error_deliver_to_online_user_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_error_deliver_to_online_user_test_90@localhost/res1">>,
escalus_tcp,<0.3758.0>,
[{event_manager,<0.3431.0>},
{server,<<"localhost">>},
{username,<<"alicE_error_deliver_to_online_user_test_90">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3431.0>},
{server,<<"localhost">>},
{username,
<<"alicE_error_deliver_to_online_user_test_90">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,<<"alice_error_deliver_to_online_user_test_90">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,<<"alicE_error_deliver_to_online_user_test_90">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"6862edfc20f89058">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_amp_error,4,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,789}]},
{amp_big_SUITE,'-error_deliver_to_online_user_test/1-fun-0-',3,
[{file,
...amp_big_SUITE:basic:error_deliver_to_online_user_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_error_deliver_to_online_user_test_96@localhost/res1">>,
escalus_tcp,<0.3762.0>,
[{event_manager,<0.3487.0>},
{server,<<"localhost">>},
{username,<<"alicE_error_deliver_to_online_user_test_96">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3487.0>},
{server,<<"localhost">>},
{username,
<<"alicE_error_deliver_to_online_user_test_96">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,<<"alice_error_deliver_to_online_user_test_96">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,<<"alicE_error_deliver_to_online_user_test_96">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"2c7151704eb7a9d2">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_amp_error,4,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,789}]},
{amp_big_SUITE,'-error_deliver_to_online_user_test/1-fun-0-',3,
[{file,
...amp_big_SUITE:basic:notify_deliver_to_online_user_recipient_privacy_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_online_user_recipient_privacy_test_67@localhost/res1">>,
escalus_tcp,<0.3725.0>,
[{event_manager,<0.3219.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_recipient_privacy_test_67">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3219.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_online_user_recipient_privacy_test_67">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_online_user_recipient_privacy_test_67">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_online_user_recipient_privacy_test_67">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"a1d006ee080bae3e">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_generic_error,3,
[{file,
"/home/circleci/project/big_tests/t...amp_big_SUITE:basic:notify_deliver_to_offline_user_recipient_privacy_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"bob_notify_deliver_to_offline_user_recipient_privacy_test_74@localhost/res1">>,
escalus_tcp,<0.3782.0>,
[{event_manager,<0.3282.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_offline_user_recipient_privacy_test_74">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3282.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_offline_user_recipient_privacy_test_74">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"bob_notify_deliver_to_offline_user_recipient_privacy_test_74">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"bOb_notify_deliver_to_offline_user_recipient_privacy_test_74">>},
{server,<<"localhost">>},
{password,<<"makrolika">>},
{stream_id,<<"c286b8d633823e85">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{privacy_helper,set_default_list,2,
[{file,
"/home/circleci/project/big_tests/tests/privacy_help...amp_big_SUITE:basic:notify_deliver_to_offline_user_recipient_privacy_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"bob_notify_deliver_to_offline_user_recipient_privacy_test_76@localhost/res1">>,
escalus_tcp,<0.3789.0>,
[{event_manager,<0.3301.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_offline_user_recipient_privacy_test_76">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.3301.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_offline_user_recipient_privacy_test_76">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"bob_notify_deliver_to_offline_user_recipient_privacy_test_76">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"bOb_notify_deliver_to_offline_user_recipient_privacy_test_76">>},
{server,<<"localhost">>},
{password,<<"makrolika">>},
{stream_id,<<"85159ede3b73185c">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{privacy_helper,activate_list,2,
[{file,
"/home/circleci/project/big_tests/tests/privacy_helper....10 errors were truncated cockroachdb_cets_28 / cockroachdb_cets / 48f4391 pubsub_SUITE:dag+basic:create_delete_node_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_create_delete_node_test_3619@localhost/res1">>,
escalus_tcp,<0.114338.0>,
[{event_manager,<0.114200.0>},
{server,<<"localhost">>},
{username,<<"alicE_create_delete_node_test_3619">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.114200.0>},
{server,<<"localhost">>},
{username,<<"alicE_create_delete_node_test_3619">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,<<"alice_create_delete_node_test_3619">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,<<"alicE_create_delete_node_test_3619">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"16fb729fa4e6a77d">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_check_response,4,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,435}]},
{escalus_story...pubsub_SUITE:dag+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3698@localhost/res1">>,
escalus_tcp,<0.115988.0>,
[{event_manager,<0.115978.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3698">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.115978.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3698">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3698">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3698">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"79c14fd3f206bb04">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:dag+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3702@localhost/res1">>,
escalus_tcp,<0.116067.0>,
[{event_manager,<0.116064.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3702">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.116064.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3702">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3702">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3702">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"de5cb8ce4a1a167f">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:dag+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3704@localhost/res1">>,
escalus_tcp,<0.116142.0>,
[{event_manager,<0.116132.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3704">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.116132.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3704">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3704">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3704">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"dad403a87d0643f0">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:dag+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3708@localhost/res1">>,
escalus_tcp,<0.116222.0>,
[{event_manager,<0.116217.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3708">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.116217.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3708">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3708">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3708">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"fde05c953e1685a2">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:dag+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3711@localhost/res1">>,
escalus_tcp,<0.116299.0>,
[{event_manager,<0.116296.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3711">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.116296.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3711">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3711">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3711">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"69d2aabd6ef083e8">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:tree+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3762@localhost/res1">>,
escalus_tcp,<0.117511.0>,
[{event_manager,<0.117498.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3762">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.117498.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3762">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3762">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3762">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"cfdcfc138607d2c9">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:tree+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3764@localhost/res1">>,
escalus_tcp,<0.117585.0>,
[{event_manager,<0.117565.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3764">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.117565.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3764">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3764">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3764">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"b9d3066c33bd8468">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:tree+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3768@localhost/res1">>,
escalus_tcp,<0.117663.0>,
[{event_manager,<0.117651.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3768">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.117651.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3768">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3768">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3768">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"ad713c03eb5254cc">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:tree+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3770@localhost/res1">>,
escalus_tcp,<0.117739.0>,
[{event_manager,<0.117719.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3770">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.117719.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3770">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3770">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3770">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"2e14b6e68767291b">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:tree+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3774@localhost/res1">>,
escalus_tcp,<0.117817.0>,
[{event_manager,<0.117806.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3774">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.117806.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3774">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3774">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3774">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"5a4abf2cae577d81">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pgsql_mnesia_27 / pgsql_mnesia / 48f4391 pgsql_mnesia_28 / pgsql_mnesia / 48f4391 mysql_redis_28 / mysql_redis / 48f4391 amp_big_SUITE:mam:mam_failure:notify_deliver_to_unknown_domain_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_unknown_domain_test_201@localhost/res1">>,
escalus_tcp,<0.5464.0>,
[{event_manager,<0.5196.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_201">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.5196.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_201">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_unknown_domain_test_201">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_201">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"47bd3c5bd2614192">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_generic_error,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,794}]},
{amp_big_SUITE,'-...amp_big_SUITE:mam:mam_failure:notify_deliver_to_unknown_domain_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_unknown_domain_test_202@localhost/res1">>,
escalus_tcp,<0.5468.0>,
[{event_manager,<0.5205.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_202">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.5205.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_202">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_unknown_domain_test_202">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_202">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"48a700c11928ac97">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_generic_error,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,794}]},
{amp_big_SUITE,'-...amp_big_SUITE:mam:mam_failure:notify_deliver_to_unknown_domain_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_unknown_domain_test_203@localhost/res1">>,
escalus_tcp,<0.5466.0>,
[{event_manager,<0.5218.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_203">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.5218.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_203">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_unknown_domain_test_203">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_203">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"f2eb9bf997ace425">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_generic_error,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,794}]},
{amp_big_SUITE,'-...amp_big_SUITE:mam:mam_failure:notify_deliver_to_unknown_domain_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_notify_deliver_to_unknown_domain_test_204@localhost/res1">>,
escalus_tcp,<0.5470.0>,
[{event_manager,<0.5223.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_204">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.5223.0>},
{server,<<"localhost">>},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_204">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_notify_deliver_to_unknown_domain_test_204">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_notify_deliver_to_unknown_domain_test_204">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"5160161d55da77bc">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{amp_big_SUITE,client_receives_generic_error,3,
[{file,
"/home/circleci/project/big_tests/tests/amp_big_SUITE.erl"},
{line,794}]},
{amp_big_SUITE,'-...amp_big_SUITE:mam:mam_failure:error_deliver_to_offline_user_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"bob_error_deliver_to_offline_user_test_210_error_deliver_to_offline_user_test_229@localhost/res1">>,
escalus_tcp,<0.5635.0>,
[{event_manager,<0.5277.0>},
{server,<<"localhost">>},
{username,
<<"bOb_error_deliver_to_offline_user_test_210_error_deliver_to_offline_user_test_229">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.5277.0>},
{server,<<"localhost">>},
{username,
<<"bOb_error_deliver_to_offline_user_test_210_error_deliver_to_offline_user_test_229">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"bob_error_deliver_to_offline_user_test_210_error_deliver_to_offline_user_test_229">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"bOb_error_deliver_to_offline_user_test_210_error_deliver_to_offline_user_test_229">>},
{server,<<"localhost">>},
{password,<<"makrolika">>},
{stream_id,<<"9e91ac18153f2de0">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{mam_hel...amp_big_SUITE:mam:mam_failure:drop_deliver_to_offline_user_test{error,{{badmatch,0},
[{escalus_story,drop_presences,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,197}]},
{escalus_story,'-start_ready_clients/2-fun-0-',3,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,140}]},
{lists,foldl,3,[{file,"lists.erl"},{line,2466}]},
{escalus_story,start_ready_clients,2,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,133}]},
{lists,flatmap_1,2,[{file,"lists.erl"},{line,2429}]},
{escalus_story,story,4,
[{file,"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_story.erl"},
{line,72}]},
{test_server,ts_tc,3,[{file,"test_server.erl"},{line,1796}]},
{test_server,run_test_case_eval1,6,
[{file,"test_server.erl"},{line,1305}]}]}}amp_big_SUITE:mam:mam_failure:error_deliver_to_offline_user_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"bob_error_deliver_to_offline_user_test_212_error_deliver_to_offline_user_test_230@localhost/res1">>,
escalus_tcp,<0.5636.0>,
[{event_manager,<0.5297.0>},
{server,<<"localhost">>},
{username,
<<"bOb_error_deliver_to_offline_user_test_212_error_deliver_to_offline_user_test_230">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.5297.0>},
{server,<<"localhost">>},
{username,
<<"bOb_error_deliver_to_offline_user_test_212_error_deliver_to_offline_user_test_230">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"bob_error_deliver_to_offline_user_test_212_error_deliver_to_offline_user_test_230">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"bOb_error_deliver_to_offline_user_test_212_error_deliver_to_offline_user_test_230">>},
{server,<<"localhost">>},
{password,<<"makrolika">>},
{stream_id,<<"a46e818d26d29cda">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{mam_hel...amp_big_SUITE:mam:mam_failure:notify_deliver_to_offline_user_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"bob_notify_deliver_to_offline_user_test_190_notify_deliver_to_offline_user_test_231@localhost/res1">>,
escalus_tcp,<0.5637.0>,
[{event_manager,<0.5033.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_offline_user_test_190_notify_deliver_to_offline_user_test_231">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.5033.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_offline_user_test_190_notify_deliver_to_offline_user_test_231">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"bob_notify_deliver_to_offline_user_test_190_notify_deliver_to_offline_user_test_231">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"bOb_notify_deliver_to_offline_user_test_190_notify_deliver_to_offline_user_test_231">>},
{server,<<"localhost">>},
{password,<<"makrolika">>},
{stream_id,<<"9c9c0faabe50dd10">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
...amp_big_SUITE:mam:mam_failure:notify_deliver_to_offline_user_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"bob_notify_deliver_to_offline_user_test_189_notify_deliver_to_offline_user_test_232@localhost/res1">>,
escalus_tcp,<0.5638.0>,
[{event_manager,<0.5024.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_offline_user_test_189_notify_deliver_to_offline_user_test_232">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.5024.0>},
{server,<<"localhost">>},
{username,
<<"bOb_notify_deliver_to_offline_user_test_189_notify_deliver_to_offline_user_test_232">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"bob_notify_deliver_to_offline_user_test_189_notify_deliver_to_offline_user_test_232">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"bOb_notify_deliver_to_offline_user_test_189_notify_deliver_to_offline_user_test_232">>},
{server,<<"localhost">>},
{password,<<"makrolika">>},
{stream_id,<<"2fafb2f3cf47f54a">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
...amp_big_SUITE:mam:mam_failure:error_deliver_to_offline_user_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"bob_error_deliver_to_offline_user_test_211_error_deliver_to_offline_user_test_234@localhost/res1">>,
escalus_tcp,<0.5693.0>,
[{event_manager,<0.5286.0>},
{server,<<"localhost">>},
{username,
<<"bOb_error_deliver_to_offline_user_test_211_error_deliver_to_offline_user_test_234">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.5286.0>},
{server,<<"localhost">>},
{username,
<<"bOb_error_deliver_to_offline_user_test_211_error_deliver_to_offline_user_test_234">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"bob_error_deliver_to_offline_user_test_211_error_deliver_to_offline_user_test_234">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"bOb_error_deliver_to_offline_user_test_211_error_deliver_to_offline_user_test_234">>},
{server,<<"localhost">>},
{password,<<"makrolika">>},
{stream_id,<<"afc83c85aca1215c">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{mam_hel...cockroachdb_cets_28 / cockroachdb_cets / 48f4391 pubsub_SUITE:dag+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3745@localhost/res1">>,
escalus_tcp,<0.115447.0>,
[{event_manager,<0.115444.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3745">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.115444.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3745">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3745">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3745">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"c910c037a9a9b14d">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:dag+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3747@localhost/res1">>,
escalus_tcp,<0.115522.0>,
[{event_manager,<0.115511.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3747">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.115511.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3747">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3747">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3747">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"cd679541e735d272">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...pubsub_SUITE:dag+last_item_cache:send_last_published_item_no_items_test{error,
{timeout_when_waiting_for_stanza,
[{escalus_client,wait_for_stanza,
[{client,
<<"alice_send_last_published_item_no_items_test_3751@localhost/res1">>,
escalus_tcp,<0.115599.0>,
[{event_manager,<0.115597.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3751">>},
{resource,<<"res1">>}],
[{event_client,
[{event_manager,<0.115597.0>},
{server,<<"localhost">>},
{username,
<<"alicE_send_last_published_item_no_items_test_3751">>},
{resource,<<"res1">>}]},
{resource,<<"res1">>},
{username,
<<"alice_send_last_published_item_no_items_test_3751">>},
{server,<<"localhost">>},
{host,<<"localhost">>},
{port,5222},
{auth,fun escalus_auth:auth_plain/2},
{wspath,undefined},
{username,
<<"alicE_send_last_published_item_no_items_test_3751">>},
{server,<<"localhost">>},
{password,<<"matygrysa">>},
{stream_id,<<"435880ae3ed2aa74">>}]},
5000],
[{file,
"/home/circleci/project/big_tests/_build/default/lib/escalus/src/escalus_client.erl"},
{line,136}]},
{pubsub_tools,receive_response,3,
[{file,"/home/circleci/project/big_tests/tests/pubsub_tools.erl"},
{line,444}]},
{pubsub_tools,receive_and_c...mysql_redis_28 / mysql_redis / 48f4391 |
Co-authored-by: Paweł Chrząszcz <[email protected]>
|
elasticsearch_and_cassandra_28 / elasticsearch_and_cassandra_mnesia / 3c700cf small_tests_28 / small_tests / 3c700cf small_tests_27 / small_tests / 3c700cf small_tests_28_arm64 / small_tests / 3c700cf ldap_mnesia_27 / ldap_mnesia / 3c700cf ldap_mnesia_28 / ldap_mnesia / 3c700cf dynamic_domains_mysql_redis_28 / mysql_redis / 3c700cf dynamic_domains_pgsql_mnesia_27 / pgsql_mnesia / 3c700cf dynamic_domains_pgsql_mnesia_28 / pgsql_mnesia / 3c700cf domain_isolation_SUITE:two_domains:routing_one2one_message_to_another_domain_gets_dropped{error,{test_case_failed,"Incorrect number of instrumentation events - matched: 0, expected: 1"}}domain_isolation_SUITE:end_per_suite{error,{test_case_failed,"Instrumentation events that were logged, but not tested:\n[{router_stanza_dropped,#{host_type => <<\"test type\">>}}]\nYou need to test them with instrument_helper:assert/3"}}internal_mnesia_28 / internal_mnesia / 3c700cf pgsql_cets_28 / pgsql_cets / 3c700cf pgsql_mnesia_27 / pgsql_mnesia / 3c700cf mysql_redis_28 / mysql_redis / 3c700cf pgsql_mnesia_28 / pgsql_mnesia / 3c700cf cockroachdb_cets_28 / cockroachdb_cets / 3c700cf dynamic_domains_pgsql_mnesia_28 / pgsql_mnesia / 3c700cf dynamic_domains_pgsql_mnesia_28 / pgsql_mnesia / 3c700cf |
This PR also fixes a CircleCI “rerun failed tests” edge case in big tests. When CircleCI reruns only a subset of suites (e.g. graphql_stanza_SUITE), it rewrites the Common Test spec to include only the allowed suites. The existing spec-filtering script only removed {suites, …}, {groups, …}, {cases, …} entries and left skip_groups / skip_cases terms untouched. Those skip_* terms still reference suites that are no longer present in the filtered spec, and Common Test fails early with “Suite X not found” and ct_error {make_failed, …} (0 tests executed).
The fix extends the spec filtering in select_suites_to_run.erl to also drop skip_groups / skip_cases entries for suites that are not in the allowed set (and to rewrite skip_suites lists accordingly). This makes reruns deterministic and prevents “missing suites” crashes during partial reruns.
(Important nuance: the gap existed already; enabling/using rerun-on-failure is what exposed it.)