FakeConnection.TestSessionCode = 22;
FakeConnection.TestResultMessage = "You do not have permission to delete this resource.";
- COServerResponse DeleteContactResult = FakeConnection.DeleteContact("testfile.vcf", "a23124sfadfdvxc1646541bsdfaf");
+ COServerResponse DeleteContactResult = FakeConnection.DeleteContact("testfile.vcf");
EXPECT_EQ(COREQUEST_ERROR_SERVER, DeleteContactResult.RequestResult);
EXPECT_EQ("", DeleteContactResult.EntityTag);
FakeConnection.TestSessionCode = 22;
FakeConnection.TestResultMessage = "The resource could not be found.";
- COServerResponse DeleteContactResult = FakeConnection.DeleteContact("testfile.vcf", "a23124sfadfdvxc1646541bsdfaf");
+ COServerResponse DeleteContactResult = FakeConnection.DeleteContact("testfile.vcf");
EXPECT_EQ(COREQUEST_ERROR_SERVER, DeleteContactResult.RequestResult);
EXPECT_EQ("", DeleteContactResult.EntityTag);
FakeConnection.TestSessionCode = 0;
FakeConnection.TestResultMessage = "";
- COServerResponse DeleteContactResult = FakeConnection.DeleteContact("testfile.vcf", "a23124sfadfdvxc1646541bsdfaf");
+ COServerResponse DeleteContactResult = FakeConnection.DeleteContact("testfile.vcf");
EXPECT_EQ(COREQUEST_ERROR_NOTCONNECTED, DeleteContactResult.RequestResult);
EXPECT_EQ("", DeleteContactResult.EntityTag);
wxString AccountDirCheck2 = "";
wxString AccountDirCheck3 = "";
+ wxString AccountDirInput1 = "Example1";
+ wxString AccountDirInput2 = "Example2";
+ wxString AccountDirInput3 = "Example3";
+
AccountDirCheck1.Append(wxString::FromUTF8(getenv("HOME")));
AccountDirCheck1.Append(wxT("/.xestiaab/accounts/"));
AccountDirCheck1.Append("Example1");
AccountDirCheck3.Append("Example3");
AccountDirCheck3.Append(wxT("/"));
- wxString AccountDir1 = GetAccountDir("Example1", false);
- wxString AccountDir2 = GetAccountDir("Example2", false);
- wxString AccountDir3 = GetAccountDir("Example3", false);
+ wxString AccountDir1 = GetAccountDir(AccountDirInput1, false);
+ wxString AccountDir2 = GetAccountDir(AccountDirInput2, false);
+ wxString AccountDir3 = GetAccountDir(AccountDirInput3, false);
ASSERT_EQ(AccountDir1, AccountDirCheck1);
ASSERT_EQ(AccountDir2, AccountDirCheck2);
wxString AccountDirCheck2 = "";
wxString AccountDirCheck3 = "";
+ wxString AccountDirInput1 = "Example1";
+ wxString AccountDirInput2 = "Example2";
+ wxString AccountDirInput3 = "Example3";
+
AccountDirCheck1.Append(wxString::FromUTF8(getenv("HOME")));
AccountDirCheck1.Append(wxT("/.xestiaab/accounts/"));
AccountDirCheck1.Append("Example1");
AccountDirCheck3.Append("Example3");
AccountDirCheck3.Append(wxT("/server.crt"));
- wxString AccountDir1 = GetAccountDir("Example1", true);
- wxString AccountDir2 = GetAccountDir("Example2", true);
- wxString AccountDir3 = GetAccountDir("Example3", true);
+ wxString AccountDir1 = GetAccountDir(AccountDirInput1, true);
+ wxString AccountDir2 = GetAccountDir(AccountDirInput2, true);
+ wxString AccountDir3 = GetAccountDir(AccountDirInput3, true);
ASSERT_EQ(AccountDir1, AccountDirCheck1);
ASSERT_EQ(AccountDir2, AccountDirCheck2);