Skip to content
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

Convert e2_read_list test to the new framework #1523

Merged
merged 1 commit into from
May 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion test/runner/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ add_kuzu_test(e2e_ddl_test e2e_ddl_test.cpp)
add_kuzu_test(e2e_delete_create_transaction_test e2e_delete_create_transaction_test.cpp)
add_kuzu_test(e2e_exception_test e2e_exception_test.cpp)
add_kuzu_test(e2e_order_by_test e2e_order_by_test.cpp)
add_kuzu_test(e2e_read_list_test e2e_read_list_test.cpp)
add_kuzu_test(e2e_read_test e2e_read_test.cpp)
add_kuzu_test(e2e_set_transaction_test e2e_set_transaction_test.cpp)
add_kuzu_test(e2e_update_node_test e2e_update_node_test.cpp)
Expand Down
41 changes: 0 additions & 41 deletions test/runner/e2e_read_list_test.cpp

This file was deleted.

4 changes: 4 additions & 0 deletions test/test_files/read_list/large_adj_list/test.group
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-GROUP EndToEndReadLargeListsTest
-TEST LargeAdjListTest
-DATASET read-list-tests/large-list
-READ_ONLY TRUE
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
-NAME KnowsVeryLargeAdjListSubQueryTest
-QUERY MATCH (a:person) WHERE EXISTS { MATCH (a)-[:knows]->(b:person)-[:knows]->(c:person) RETURN a.ID } RETURN count(*)
-QUERY MATCH (a:person) WHERE EXISTS { MATCH (a)-[:knows]->(b:person)-[:knows]->(c:person) } RETURN count(*)
-PARALLELISM 1
-ENUMERATE
---- 1
1

-NAME KnowsVeryLargeAdjListVarLenWithSubQueryTest
-QUERY MATCH (a:person) WHERE EXISTS { MATCH (a)-[:knows*2..2]->(b:person) RETURN a.ID } RETURN count(*)
-QUERY MATCH (a:person) WHERE EXISTS { MATCH (a)-[:knows*2..2]->(b:person) } RETURN count(*)
-PARALLELISM 1
-ENUMERATE
---- 1
Expand Down
4 changes: 4 additions & 0 deletions test/test_files/read_list/large_list_subquery/test.group
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-GROUP EndToEndReadListsSubQueryTest
-TEST LargeListSubQueryTest
-DATASET read-list-tests/large-list-sub-query-tests
-READ_ONLY TRUE
4 changes: 4 additions & 0 deletions test/test_files/read_list/prop_lists/test.group
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-GROUP EndToEndReadLargeListsTest
-TEST PropLists4BytesPerEdgeTest
-DATASET read-list-tests/large-list
-READ_ONLY TRUE
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-GROUP EndToEndReadLargeListsTest
-TEST VarLengthExtendLargeAdjListTest
-DATASET read-list-tests/large-list
-READ_ONLY TRUE