Fix '==': signed/unsigned mismatch warning
[TortoiseGit.git] / test / UnitTests / WindowsCredentialsStoreTests.cpp
blobb4d4ec4a920aae1af9e5e744bb2209ce2d1f42e2
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2016 - TortoiseGit
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "stdafx.h"
21 #include "WindowsCredentialsStore.h"
23 #define CREDENDIALSTORETESTENTRY L"TGitUnitTest-TestEntry"
25 TEST(WindowsCredentialsStore, GetSetOverrideDelete)
27 EXPECT_EQ(-1, CWindowsCredentialsStore::DeleteCredential(CREDENDIALSTORETESTENTRY));
28 CString username, password;
29 EXPECT_EQ(-1, CWindowsCredentialsStore::GetCredential(CREDENDIALSTORETESTENTRY, username, password));
30 username = L"someusername";
31 password = L"somepassword";
32 EXPECT_EQ(0, CWindowsCredentialsStore::SaveCredential(CREDENDIALSTORETESTENTRY, username, password));
33 username.Empty();
34 password.Empty();
35 EXPECT_EQ(0, CWindowsCredentialsStore::GetCredential(CREDENDIALSTORETESTENTRY, username, password));
36 EXPECT_STREQ(L"someusername", username);
37 EXPECT_STREQ(L"somepassword", password);
38 username = L"some-other-username";
39 password = L"some-other-passwordä";
40 EXPECT_EQ(0, CWindowsCredentialsStore::SaveCredential(CREDENDIALSTORETESTENTRY, username, password));
41 username.Empty();
42 password.Empty();
43 EXPECT_EQ(0, CWindowsCredentialsStore::GetCredential(CREDENDIALSTORETESTENTRY, username, password));
44 EXPECT_STREQ(L"some-other-username", username);
45 EXPECT_STREQ(L"some-other-passwordä", password);
46 EXPECT_EQ(0, CWindowsCredentialsStore::DeleteCredential(CREDENDIALSTORETESTENTRY));