Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-cppinttest
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-cppinttest
Commits
c5209e1f
Verified
Commit
c5209e1f
authored
Aug 4, 2021
by
Timm Fitschen
Browse files
Options
Downloads
Plain Diff
Merge branch 'dev' into f-multi-retrieve
parents
37f38368
9e935351
No related branches found
No related tags found
1 merge request
!4
F multi retrieve
Pipeline
#11418
passed
Aug 5, 2021
Stage: info
Stage: setup
Stage: build
Stage: test
Changes
3
Pipelines
7
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
test/CMakeLists.txt
+1
-1
1 addition, 1 deletion
test/CMakeLists.txt
test/test_connection.cpp
+2
-5
2 additions, 5 deletions
test/test_connection.cpp
test/test_transaction.cpp
+164
-5
164 additions, 5 deletions
test/test_transaction.cpp
with
167 additions
and
11 deletions
test/CMakeLists.txt
+
1
−
1
View file @
c5209e1f
...
...
@@ -82,7 +82,7 @@ if(LINTING)
"--warnings-as-errors=*"
"--fix"
)
set
(
_CMAKE_CXX_CLANG_TIDY_CHECKS
"--checks=*,-fuchsia-*,-llvmlibc-*,-cert-err58-cpp,-cppcoreguidelines-avoid-non-const-global-variables,-cppcoreguidelines-owning-memory,-modernize-use-trailing-return-type,-google-readability-avoid-underscore-in-googletest-name,-cppcoreguidelines-avoid-magic-numbers,-readability-magic-numbers,-cppcoreguidelines-avoid-goto,-hicpp-avoid-goto"
)
"--checks=*,-fuchsia-*,-llvmlibc-*,-cert-err58-cpp,-cppcoreguidelines-avoid-non-const-global-variables,-cppcoreguidelines-owning-memory,-modernize-use-trailing-return-type,-google-readability-avoid-underscore-in-googletest-name,-cppcoreguidelines-avoid-magic-numbers,-readability-magic-numbers,-cppcoreguidelines-avoid-goto,-hicpp-avoid-goto
,-readability-function-cognitive-complexity
"
)
endif
()
else
()
message
(
STATUS
"LINTING is OFF"
)
...
...
This diff is collapsed.
Click to expand it.
test/test_connection.cpp
+
2
−
5
View file @
c5209e1f
...
...
@@ -73,8 +73,7 @@ TEST(test_connection, connection_insecure_authentication_error_anonymous) {
EXPECT_THROW
(
connection
.
RetrieveVersionInfo
(),
AuthenticationError
);
}
// TODO(tf) cognitive complexity > 25 (threshold)
TEST
(
test_connection
,
connection_ssl_authentication_error_anonymous
)
{
// NOLINT
TEST
(
test_connection
,
connection_ssl_authentication_error_anonymous
)
{
const
auto
*
port_str
=
caosdb
::
utility
::
get_env_var
(
"CAOSDB_SERVER_GRPC_PORT_HTTPS"
,
"8443"
);
auto
port
=
std
::
stoi
(
port_str
);
...
...
@@ -93,9 +92,7 @@ TEST(test_connection, connection_ssl_authentication_error_anonymous) { // NOLINT
"succeed. Original error: Please login."
);
}
// TODO(tf) cognitive complexity > 25 (threshold)
TEST
(
test_connection
,
// NOLINT
connection_ssl_authentication_error_wrong_credentials
)
{
// NOLINT
TEST
(
test_connection
,
connection_ssl_authentication_error_wrong_credentials
)
{
const
auto
*
port_str
=
caosdb
::
utility
::
get_env_var
(
"CAOSDB_SERVER_GRPC_PORT_HTTPS"
,
"8443"
);
auto
port
=
std
::
stoi
(
port_str
);
...
...
This diff is collapsed.
Click to expand it.
test/test_transaction.cpp
+
164
−
5
View file @
c5209e1f
...
...
@@ -35,6 +35,7 @@ namespace caosdb::transaction {
using
caosdb
::
entity
::
Entity
;
using
caosdb
::
entity
::
MessageCode
;
using
caosdb
::
entity
::
Parent
;
using
caosdb
::
entity
::
Property
;
class
test_transaction
:
public
::
testing
::
Test
{
protected:
...
...
@@ -95,8 +96,7 @@ TEST(test_transaction, retrieve_non_existing) {
MessageCode
::
ENTITY_DOES_NOT_EXIST
);
}
// TODO(fspreck) cognitive complexity > 25 (threshold)
TEST
(
test_transaction
,
insert_delete
)
{
// NOLINT
TEST
(
test_transaction
,
insert_delete
)
{
const
auto
&
connection
=
caosdb
::
connection
::
ConnectionManager
::
GetDefaultConnection
();
...
...
@@ -143,9 +143,7 @@ TEST(test_transaction, insert_delete) { // NOLINT
EXPECT_FALSE
(
deleted_entity
.
HasErrors
());
}
// TODO(fspreck) Simplify inserts and deletes once we have
// multi-entity operations, also cognitive complexity > threshold
TEST
(
test_transaction
,
insert_delete_with_parent
)
{
// NOLINT
TEST
(
test_transaction
,
insert_delete_with_parent
)
{
const
auto
&
connection
=
caosdb
::
connection
::
ConnectionManager
::
GetDefaultConnection
();
...
...
@@ -235,6 +233,167 @@ TEST(test_transaction, insert_delete_with_parent) { // NOLINT
// TODO(fspreck) Insert a Record with a parent and a Property. Check
// for success and delete everything.
TEST
(
test_transaction
,
insert_delete_with_property
)
{
const
auto
&
connection
=
caosdb
::
connection
::
ConnectionManager
::
GetDefaultConnection
();
// Create and insert property
Entity
prop_ent
;
prop_ent
.
SetRole
(
"Property"
);
prop_ent
.
SetName
(
"TestProperty"
);
prop_ent
.
SetDatatype
(
"TEXT"
);
auto
prop_insertion
(
connection
->
CreateTransaction
());
prop_insertion
->
InsertEntity
(
&
prop_ent
);
prop_insertion
->
ExecuteAsynchronously
();
auto
prop_insert_status
=
prop_insertion
->
WaitForIt
();
ASSERT_TRUE
(
prop_insert_status
.
IsTerminated
());
ASSERT_FALSE
(
prop_insert_status
.
IsError
());
const
auto
&
prop_result_set
=
dynamic_cast
<
const
UniqueResult
&>
(
prop_insertion
->
GetResultSet
());
const
auto
&
inserted_prop
=
prop_result_set
.
GetEntity
();
EXPECT_FALSE
(
inserted_prop
.
GetId
().
empty
());
// create and insert record type with the above property
Property
prop_rt
;
prop_rt
.
SetName
(
prop_ent
.
GetName
());
prop_rt
.
SetId
(
inserted_prop
.
GetId
());
prop_rt
.
SetImportance
(
"SUGGESTED"
);
Entity
rt
;
rt
.
SetRole
(
"RecordType"
);
rt
.
SetName
(
"TestRT"
);
rt
.
AppendProperty
(
prop_rt
);
auto
rt_insertion
(
connection
->
CreateTransaction
());
rt_insertion
->
InsertEntity
(
&
rt
);
rt_insertion
->
ExecuteAsynchronously
();
auto
rt_insert_status
=
rt_insertion
->
WaitForIt
();
ASSERT_TRUE
(
rt_insert_status
.
IsTerminated
());
ASSERT_FALSE
(
rt_insert_status
.
IsError
());
const
auto
&
rt_result_set
=
dynamic_cast
<
const
UniqueResult
&>
(
rt_insertion
->
GetResultSet
());
const
auto
&
inserted_rt
=
rt_result_set
.
GetEntity
();
EXPECT_FALSE
(
inserted_rt
.
GetId
().
empty
());
// retrieve inserted rt for testing
auto
rt_retrieval
(
connection
->
CreateTransaction
());
rt_retrieval
->
RetrieveById
(
inserted_rt
.
GetId
());
rt_retrieval
->
ExecuteAsynchronously
();
auto
rt_retrieve_status
=
rt_retrieval
->
WaitForIt
();
ASSERT_TRUE
(
rt_retrieve_status
.
IsTerminated
());
ASSERT_FALSE
(
rt_retrieve_status
.
IsError
());
const
auto
&
rt_retrieve_results
=
dynamic_cast
<
const
UniqueResult
&>
(
rt_retrieval
->
GetResultSet
());
const
auto
&
retrieved_rt
=
rt_retrieve_results
.
GetEntity
();
EXPECT_EQ
(
inserted_rt
.
GetId
(),
retrieved_rt
.
GetId
());
EXPECT_EQ
(
rt
.
GetName
(),
retrieved_rt
.
GetName
());
EXPECT_EQ
(
retrieved_rt
.
GetProperties
().
Size
(),
1
);
const
auto
&
retrieved_prop_rt
=
retrieved_rt
.
GetProperties
().
At
(
0
);
EXPECT_EQ
(
retrieved_prop_rt
.
GetName
(),
prop_ent
.
GetName
());
EXPECT_EQ
(
retrieved_prop_rt
.
GetId
(),
inserted_prop
.
GetId
());
EXPECT_EQ
(
retrieved_prop_rt
.
GetDatatype
(),
prop_ent
.
GetDatatype
());
EXPECT_EQ
(
retrieved_prop_rt
.
GetImportance
(),
prop_rt
.
GetImportance
());
// create and insert record of the above record type with a property
// with a value.
Parent
parent
;
parent
.
SetName
(
rt
.
GetName
());
parent
.
SetId
(
inserted_rt
.
GetId
());
Property
prop_rec
;
prop_rec
.
SetName
(
prop_ent
.
GetName
());
prop_rec
.
SetId
(
inserted_prop
.
GetId
());
prop_rec
.
SetValue
(
"Test"
);
Entity
rec
;
rec
.
SetName
(
"TestRec"
);
rec
.
SetRole
(
"Record"
);
rec
.
AppendParent
(
parent
);
rec
.
AppendProperty
(
prop_rec
);
auto
rec_insertion
(
connection
->
CreateTransaction
());
rec_insertion
->
InsertEntity
(
&
rec
);
rec_insertion
->
ExecuteAsynchronously
();
auto
rec_insert_status
=
rec_insertion
->
WaitForIt
();
ASSERT_TRUE
(
rec_insert_status
.
IsTerminated
());
ASSERT_FALSE
(
rec_insert_status
.
IsError
());
const
auto
&
rec_result_set
=
dynamic_cast
<
const
UniqueResult
&>
(
rec_insertion
->
GetResultSet
());
const
auto
&
inserted_rec
=
rec_result_set
.
GetEntity
();
EXPECT_FALSE
(
inserted_rec
.
GetId
().
empty
());
// Retrieve the record and verify paretn and property
auto
rec_retrieval
(
connection
->
CreateTransaction
());
rec_retrieval
->
RetrieveById
(
inserted_rec
.
GetId
());
rec_retrieval
->
ExecuteAsynchronously
();
auto
rec_retrieve_status
=
rec_retrieval
->
WaitForIt
();
ASSERT_TRUE
(
rec_retrieve_status
.
IsTerminated
());
ASSERT_FALSE
(
rec_retrieve_status
.
IsError
());
const
auto
&
rec_retrieve_results
=
dynamic_cast
<
const
UniqueResult
&>
(
rec_retrieval
->
GetResultSet
());
const
auto
&
retrieved_rec
=
rec_retrieve_results
.
GetEntity
();
EXPECT_EQ
(
rec
.
GetName
(),
retrieved_rec
.
GetName
());
EXPECT_EQ
(
inserted_rec
.
GetId
(),
retrieved_rec
.
GetId
());
EXPECT_EQ
(
retrieved_rec
.
GetParents
().
Size
(),
1
);
EXPECT_EQ
(
retrieved_rec
.
GetProperties
().
Size
(),
1
);
const
auto
&
retrieved_parent_rec
=
retrieved_rec
.
GetParents
().
At
(
0
);
EXPECT_EQ
(
retrieved_parent_rec
.
GetName
(),
rt
.
GetName
());
EXPECT_EQ
(
retrieved_parent_rec
.
GetId
(),
inserted_rt
.
GetId
());
const
auto
&
retrieved_prop_rec
=
retrieved_rec
.
GetProperties
().
At
(
0
);
EXPECT_EQ
(
retrieved_prop_rec
.
GetName
(),
prop_ent
.
GetName
());
EXPECT_EQ
(
retrieved_prop_rec
.
GetId
(),
inserted_prop
.
GetId
());
EXPECT_EQ
(
retrieved_prop_rec
.
GetDatatype
(),
prop_ent
.
GetDatatype
());
EXPECT_EQ
(
retrieved_prop_rec
.
GetValue
(),
prop_rec
.
GetValue
());
// Delete eveything: First record ...
auto
rec_deletion
(
connection
->
CreateTransaction
());
rec_deletion
->
DeleteById
(
inserted_rec
.
GetId
());
rec_deletion
->
ExecuteAsynchronously
();
auto
rec_delete_status
=
rec_deletion
->
WaitForIt
();
ASSERT_TRUE
(
rec_delete_status
.
IsTerminated
());
ASSERT_FALSE
(
rec_delete_status
.
IsError
());
// ... then parent ...
auto
rt_deletion
(
connection
->
CreateTransaction
());
rt_deletion
->
DeleteById
(
inserted_rt
.
GetId
());
rt_deletion
->
ExecuteAsynchronously
();
auto
rt_delete_status
=
rt_deletion
->
WaitForIt
();
ASSERT_TRUE
(
rt_delete_status
.
IsTerminated
());
ASSERT_FALSE
(
rt_delete_status
.
IsError
());
// ... then property.
auto
prop_deletion
(
connection
->
CreateTransaction
());
prop_deletion
->
DeleteById
(
inserted_prop
.
GetId
());
prop_deletion
->
ExecuteAsynchronously
();
auto
prop_delete_status
=
prop_deletion
->
WaitForIt
();
ASSERT_TRUE
(
prop_delete_status
.
IsTerminated
());
ASSERT_FALSE
(
prop_delete_status
.
IsError
());
}
TEST
(
test_transaction
,
test_multi_retrieve
)
{
const
auto
&
connection
=
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment