- #include <stdlib.h>
- #include <string>
- #include <cstring>
- #include <iostream>
- #include <fstream>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <unistd.h>
-
-
- #include "pEpEngine.h"
- #include "pEp_internal.h"
- #include "TestUtilities.h"
- #include "TestConstants.h"
- #include "Engine.h"
-
- #include <gtest/gtest.h>
-
-
- namespace {
-
- //The fixture for ImportKeyTest
- class ImportKeyTest : public ::testing::Test {
- public:
- Engine* engine;
- PEP_SESSION session;
-
- protected:
- // You can remove any or all of the following functions if its body
- // is empty.
- ImportKeyTest() {
- // You can do set-up work for each test here.
- test_suite_name = ::testing::UnitTest::GetInstance()->current_test_info()->GTEST_SUITE_SYM();
- test_name = ::testing::UnitTest::GetInstance()->current_test_info()->name();
- test_path = get_main_test_home_dir() + "/" + test_suite_name + "/" + test_name;
- }
-
- ~ImportKeyTest() override {
- // You can do clean-up work that doesn't throw exceptions here.
- }
-
- // If the constructor and destructor are not enough for setting up
- // and cleaning up each test, you can define the following methods:
-
- void SetUp() override {
- // Code here will be called immediately after the constructor (right
- // before each test).
-
- // Leave this empty if there are no files to copy to the home directory path
- std::vector<std::pair<std::string, std::string>> init_files = std::vector<std::pair<std::string, std::string>>();
-
- // Get a new test Engine.
- engine = new Engine(test_path);
- ASSERT_NOTNULL(engine);
-
- // Ok, let's initialize test directories etc.
- engine->prep(NULL, NULL, NULL, init_files);
-
- // Ok, try to start this bugger.
- engine->start();
- ASSERT_NOTNULL(engine->session);
- session = engine->session;
-
- // Engine is up. Keep on truckin'
- }
-
- void TearDown() override {
- // Code here will be called immediately after each test (right
- // before the destructor).
- engine->shut_down();
- delete engine;
- engine = NULL;
- session = NULL;
- }
-
- private:
- const char* test_suite_name;
- const char* test_name;
- string test_path;
- // Objects declared here can be used by all tests in the ImportKeyTest suite.
-
- };
-
- } // namespace
-
-
- TEST_F(ImportKeyTest, check_import_fpr_pub_new) {
- PEP_STATUS status = PEP_STATUS_OK;
-
- string pubkey = slurp("test_keys/pub/pep-test-alice-0x6FF00E97_pub.asc");
- stringlist_t* keylist = NULL;
- status = import_key_with_fpr_return(session, pubkey.c_str(), pubkey.size(), NULL, &keylist, NULL);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_STREQ(keylist->value, "4ABE3AAF59AC32CFE4F86500A9411D176FF00E97");
- ASSERT_NULL(keylist->next);
-
- // FIXME, check key is actually imported
- }
-
- TEST_F(ImportKeyTest, check_import_change_pub_new) {
- PEP_STATUS status = PEP_STATUS_OK;
-
- string pubkey = slurp("test_keys/pub/pep-test-alice-0x6FF00E97_pub.asc");
- stringlist_t* keylist = NULL;
- uint64_t changes = 0;
- status = import_key_with_fpr_return(session, pubkey.c_str(), pubkey.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_STREQ(keylist->value, "4ABE3AAF59AC32CFE4F86500A9411D176FF00E97");
- ASSERT_NULL(keylist->next);
- ASSERT_EQ(changes, 1);
- // FIXME, check key is actually imported
- }
-
- TEST_F(ImportKeyTest, check_import_fpr_priv_new) {
- PEP_STATUS status = PEP_STATUS_OK;
-
- string pubkey = slurp("test_keys/priv/pep-test-alice-0x6FF00E97_priv.asc");
- stringlist_t* keylist = NULL;
- status = import_key_with_fpr_return(session, pubkey.c_str(), pubkey.size(), NULL, &keylist, NULL);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_STREQ(keylist->value, "4ABE3AAF59AC32CFE4F86500A9411D176FF00E97");
- ASSERT_NULL(keylist->next);
-
- // FIXME, check key is actually imported
- }
-
- TEST_F(ImportKeyTest, check_import_change_pub_nochange) {
- PEP_STATUS status = PEP_STATUS_OK;
-
- string pubkey = slurp("test_keys/pub/pep-test-alice-0x6FF00E97_pub.asc");
- stringlist_t* keylist = NULL;
- uint64_t changes = 0;
- status = import_key_with_fpr_return(session, pubkey.c_str(), pubkey.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_STREQ(keylist->value, "4ABE3AAF59AC32CFE4F86500A9411D176FF00E97");
- ASSERT_NULL(keylist->next);
- ASSERT_EQ(changes, 1);
-
- // import again!
- free_stringlist(keylist);
- keylist = NULL;
- changes = 0;
- status = import_key_with_fpr_return(session, pubkey.c_str(), pubkey.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_STREQ(keylist->value, "4ABE3AAF59AC32CFE4F86500A9411D176FF00E97");
- ASSERT_NULL(keylist->next);
- ASSERT_EQ(changes, 0);
- }
-
- TEST_F(ImportKeyTest, check_import_change_pub_nochange_binary_bigkey) {
- PEP_STATUS status = PEP_STATUS_OK;
-
- int retval = 0;
-
- #ifndef WIN32
- struct stat fst;
- retval = stat("test_keys/bigkey.pgp", &fst);
- #else
- struct _stat fst;
- retval = _stat("test_keys/bigkey.pgp", &fst);
- #endif
-
- ASSERT_EQ(retval, 0);
- size_t img_size = (size_t)(fst.st_size);
- ASSERT_NE(img_size, 0);
- char* img = (char*)calloc(1, img_size);
-
- ifstream img_file("test_keys/bigkey.pgp", ios::in | ios::binary);
-
- img_file.read(img, img_size);
- img_file.close();
-
- cout << img_size << endl;
-
- stringlist_t* keylist = NULL;
- uint64_t changes = 0;
- status = import_key_with_fpr_return(session, img, img_size, NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NE(keylist, nullptr);
- // ASSERT_STREQ(keylist->value, "4ABE3AAF59AC32CFE4F86500A9411D176FF00E97");
- ASSERT_EQ(keylist->next, nullptr);
- ASSERT_EQ(changes, 1);
-
- // import again!
- free_stringlist(keylist);
- keylist = NULL;
- changes = 0;
- status = import_key_with_fpr_return(session, img, img_size, NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NE(keylist, nullptr);
- // ASSERT_STREQ(keylist->value, "4ABE3AAF59AC32CFE4F86500A9411D176FF00E97");
- ASSERT_EQ(keylist->next, nullptr);
- ASSERT_EQ(changes, 0);
- }
-
- TEST_F(ImportKeyTest, check_import_change_wo_fpr_illegal) {
- PEP_STATUS status = PEP_STATUS_OK;
-
- string pubkey = slurp("test_keys/pub/pep-test-alice-0x6FF00E97_pub.asc");
- uint64_t changes = 0;
- status = import_key_with_fpr_return(session, pubkey.c_str(), pubkey.size(), NULL, NULL, &changes);
- ASSERT_EQ(status, PEP_ILLEGAL_VALUE);
- }
-
- TEST_F(ImportKeyTest, check_import_fpr_list_pub_concat) {
- // Contains 10 keys
- string pubkey_material = slurp("test_keys/pub/import_keys_multi_pub_concat.asc");
- stringlist_t* keylist = NULL;
- uint64_t changes = 0;
- PEP_STATUS status = import_key_with_fpr_return(session, pubkey_material.c_str(), pubkey_material.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_EQ(stringlist_length(keylist), 10);
- ASSERT_EQ(changes, 1023); // 2^10 - 1
- }
-
- TEST_F(ImportKeyTest, check_import_fpr_list_priv_concat) {
- // Contains 10 keys
- string privkey_material = slurp("test_keys/priv/import_keys_multi_priv_concat.asc");
- stringlist_t* keylist = NULL;
- uint64_t changes = 0;
- PEP_STATUS status = import_key_with_fpr_return(session, privkey_material.c_str(), privkey_material.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_EQ(stringlist_length(keylist), 10);
- ASSERT_EQ(changes, 1023); // The answer to this might be implementation dependent and we don't care.
- }
-
- TEST_F(ImportKeyTest, check_import_fpr_list_priv_then_pub) {
- // Contains 10 keys
- string privkey_material = slurp("test_keys/priv/import_keys_multi_priv_concat.asc");
- stringlist_t* keylist = NULL;
- uint64_t changes = 0;
- PEP_STATUS status = import_key_with_fpr_return(session, privkey_material.c_str(), privkey_material.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_EQ(stringlist_length(keylist), 10);
- ASSERT_EQ(changes, 1023);
- free_stringlist(keylist);
- keylist = NULL;
- changes = 0;
- string pubkey_material = slurp("test_keys/pub/import_keys_multi_pub_concat.asc");
- status = import_key_with_fpr_return(session, pubkey_material.c_str(), pubkey_material.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_EQ(stringlist_length(keylist), 10);
- // ASSERT_EQ(changes, 0); Answer may be implementation dependent. Ignore.
- }
-
- TEST_F(ImportKeyTest, check_import_fpr_list_pub_then_priv) {
- // Contains 10 keys
- string pubkey_material = slurp("test_keys/pub/import_keys_multi_pub_concat.asc");
- stringlist_t* keylist = NULL;
- uint64_t changes = 0;
- PEP_STATUS status = import_key_with_fpr_return(session, pubkey_material.c_str(), pubkey_material.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_EQ(stringlist_length(keylist), 10);
- ASSERT_EQ(changes, 1023);
- free_stringlist(keylist);
- keylist = NULL;
- changes = 0;
- string privkey_material = slurp("test_keys/priv/import_keys_multi_priv_concat.asc");
- status = import_key_with_fpr_return(session, privkey_material.c_str(), privkey_material.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_EQ(stringlist_length(keylist), 10);
- // ASSERT_EQ(changes, 1023); // The answer to this might be implementation dependent and we don't care.
- free_stringlist(keylist);
- }
-
- TEST_F(ImportKeyTest, check_import_fpr_list_pub_blob) {
- // Contains 10 keys
- string pubkey_material = slurp("test_keys/pub/import_keys_multi_pub_serial_blob.asc");
- stringlist_t* keylist = NULL;
- uint64_t changes = 0;
- PEP_STATUS status = import_key_with_fpr_return(session, pubkey_material.c_str(), pubkey_material.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_EQ(stringlist_length(keylist), 10);
- ASSERT_EQ(changes, 1023); // 2^10 - 1
- }
-
- TEST_F(ImportKeyTest, check_import_fpr_list_priv_blob) {
- // Contains 10 keys
- string privkey_material = slurp("test_keys/priv/import_keys_multi_priv_serial_blob.asc");
- stringlist_t* keylist = NULL;
- uint64_t changes = 0;
- PEP_STATUS status = import_key_with_fpr_return(session, privkey_material.c_str(), privkey_material.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_EQ(stringlist_length(keylist), 10);
- // ASSERT_EQ(changes, 1023); // The answer to this might be implementation dependent and we don't care.
- }
-
- TEST_F(ImportKeyTest, check_import_added_subkey_then_revoke_subkey) {
- PEP_STATUS status = PEP_STATUS_OK;
-
- string pubkey = slurp("test_keys/pub/import_keys_multi_9-0x045134F0_pub.asc");
- stringlist_t* keylist = NULL;
- uint64_t changes = 0;
- status = import_key_with_fpr_return(session, pubkey.c_str(), pubkey.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_STREQ(keylist->value, "25D08DAFD15F21F6A9492FB00A958FA5045134F0");
- ASSERT_NULL(keylist->next);
- ASSERT_EQ(changes, 1);
- pubkey = slurp("test_keys/pub/import_keys_multi_9_add_rsa-0x045134F0_pub.asc");
- // import again!
- free_stringlist(keylist);
- keylist = NULL;
- changes = 0;
- status = import_key_with_fpr_return(session, pubkey.c_str(), pubkey.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_STREQ(keylist->value, "25D08DAFD15F21F6A9492FB00A958FA5045134F0");
- ASSERT_NULL(keylist->next);
- ASSERT_EQ(changes, 1);
- pubkey = slurp("test_keys/pub/import_keys_multi_9_add_rsa_rev_sub-0x045134F0_pub.asc");
- // import again!
- free_stringlist(keylist);
- keylist = NULL;
- changes = 0;
- status = import_key_with_fpr_return(session, pubkey.c_str(), pubkey.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_STREQ(keylist->value, "25D08DAFD15F21F6A9492FB00A958FA5045134F0");
- ASSERT_NULL(keylist->next);
- ASSERT_EQ(changes, 1);
-
- }
-
-
- // This is pulling too much weight, but it'll get a lot done at once.
- // FIXME: Break out tests individually
- TEST_F(ImportKeyTest, check_import_huge_concat_then_change) {
- // Contains 10 keys
- string pubkey_material = slurp("test_keys/pub/import_keys_multi_pub_concat.asc");
- stringlist_t* keylist = NULL;
- uint64_t changes = 0;
- PEP_STATUS status = import_key_with_fpr_return(session, pubkey_material.c_str(), pubkey_material.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_EQ(stringlist_length(keylist), 10);
- ASSERT_EQ(changes, 1023);
- free_stringlist(keylist);
- keylist = NULL;
- changes = 0;
- string some_changed_material = slurp("test_keys/pub/import_keys_multi_with_mult_changes_concat.asc");
- status = import_key_with_fpr_return(session, some_changed_material.c_str(), some_changed_material.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_EQ(stringlist_length(keylist), 10);
- ASSERT_EQ(changes, 938); // 1, 3, 5, 7, 8, 9 = 1110101010 = 938
- free_stringlist(keylist);
- }
-
- TEST_F(ImportKeyTest, check_non_cleared_list_usage) {
- // Contains 10 keys
- string pubkey_material = slurp("test_keys/pub/import_keys_multi_pub_concat.asc");
- stringlist_t* keylist = NULL;
- uint64_t changes = 0;
- PEP_STATUS status = import_key_with_fpr_return(session, pubkey_material.c_str(), pubkey_material.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_EQ(stringlist_length(keylist), 10);
- ASSERT_EQ(changes, 1023);
-
- string some_changed_material = slurp("test_keys/pub/import_keys_multi_with_mult_changes_concat.asc");
- status = import_key_with_fpr_return(session, some_changed_material.c_str(), some_changed_material.size(), NULL, &keylist, &changes);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_EQ(stringlist_length(keylist), 20);
- ASSERT_EQ(changes, 0xEABFF); // (938 << 10 | 1023) -> 11101010101111111111 = 0xEABFF
- free_stringlist(keylist);
- }
-
- TEST_F(ImportKeyTest, check_770_import_priv_asc) {
- PEP_STATUS status = PEP_STATUS_OK;
-
- string pubkey = slurp("test_keys/770_priv.asc");
- stringlist_t* keylist = NULL;
- status = import_key_with_fpr_return(session, pubkey.c_str(), pubkey.size(), NULL, &keylist, NULL);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_STREQ(keylist->value, "0521111E12084FDEA58A38E880D9FB378DCC789D");
- ASSERT_NULL(keylist->next);
-
- // FIXME, check key is actually imported
- }
-
- TEST_F(ImportKeyTest, check_770_import_priv_pgp) {
- PEP_STATUS status = PEP_STATUS_OK;
-
- string pubkey = slurp("test_keys/770_priv.pgp");
- stringlist_t* keylist = NULL;
- status = import_key_with_fpr_return(session, pubkey.c_str(), pubkey.size(), NULL, &keylist, NULL);
- ASSERT_EQ(status, PEP_KEY_IMPORTED);
- ASSERT_NOTNULL(keylist);
- ASSERT_STREQ(keylist->value, "0521111E12084FDEA58A38E880D9FB378DCC789D");
- ASSERT_NULL(keylist->next);
-
- // FIXME, check key is actually imported
- }
|