forked from keepassxreboot/keepassxc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SSH Agent: Integration tests against ssh-agent
Windows testing is currently explicitly disabled due to too many different scenarios to run an agent and MSYS2 having its own.
- Loading branch information
1 parent
2359742
commit dce9af2
Showing
6 changed files
with
361 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,214 @@ | ||
/* | ||
* Copyright (C) 2020 KeePassXC Team <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 or (at your option) | ||
* version 3 of the License. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include "TestSSHAgent.h" | ||
#include "TestGlobal.h" | ||
#include "core/Config.h" | ||
#include "crypto/Crypto.h" | ||
#include "sshagent/SSHAgent.h" | ||
|
||
QTEST_GUILESS_MAIN(TestSSHAgent) | ||
|
||
void TestSSHAgent::initTestCase() | ||
{ | ||
QVERIFY(Crypto::init()); | ||
Config::createTempFileInstance(); | ||
|
||
m_agentSocketFile.setAutoRemove(true); | ||
QVERIFY(m_agentSocketFile.open()); | ||
|
||
m_agentSocketFileName = m_agentSocketFile.fileName(); | ||
QVERIFY(!m_agentSocketFileName.isEmpty()); | ||
|
||
// let ssh-agent re-create it as a socket | ||
QVERIFY(m_agentSocketFile.remove()); | ||
|
||
QStringList arguments; | ||
arguments << "-D" | ||
<< "-a" << m_agentSocketFileName; | ||
|
||
QElapsedTimer timer; | ||
timer.start(); | ||
|
||
qDebug() << "ssh-agent starting with arguments" << arguments; | ||
m_agentProcess.setProcessChannelMode(QProcess::ForwardedChannels); | ||
m_agentProcess.start("ssh-agent", arguments); | ||
m_agentProcess.closeWriteChannel(); | ||
|
||
if (!m_agentProcess.waitForStarted()) { | ||
QSKIP("ssh-agent could not be started"); | ||
} | ||
|
||
qDebug() << "ssh-agent started as pid" << m_agentProcess.pid(); | ||
|
||
// we need to wait for the agent to open the socket before going into real tests | ||
QFileInfo socketFileInfo(m_agentSocketFileName); | ||
while (!timer.hasExpired(2000)) { | ||
if (socketFileInfo.exists()) { | ||
break; | ||
} | ||
QTest::qWait(10); | ||
} | ||
|
||
QVERIFY(socketFileInfo.exists()); | ||
qDebug() << "ssh-agent initialized in" << timer.elapsed() << "ms"; | ||
|
||
// initialize test key | ||
const QString keyString = QString("-----BEGIN OPENSSH PRIVATE KEY-----\n" | ||
"b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAAAAtzc2gtZW\n" | ||
"QyNTUxOQAAACDdlO5F2kF2WzedrBAHBi9wBHeISzXZ0IuIqrp0EzeazAAAAKjgCfj94An4\n" | ||
"/QAAAAtzc2gtZWQyNTUxOQAAACDdlO5F2kF2WzedrBAHBi9wBHeISzXZ0IuIqrp0EzeazA\n" | ||
"AAAEBe1iilZFho8ZGAliiSj5URvFtGrgvmnEKdiLZow5hOR92U7kXaQXZbN52sEAcGL3AE\n" | ||
"d4hLNdnQi4iqunQTN5rMAAAAH29wZW5zc2hrZXktdGVzdC1wYXJzZUBrZWVwYXNzeGMBAg\n" | ||
"MEBQY=\n" | ||
"-----END OPENSSH PRIVATE KEY-----\n"); | ||
|
||
const QByteArray keyData = keyString.toLatin1(); | ||
|
||
QVERIFY(m_key.parsePKCS1PEM(keyData)); | ||
} | ||
|
||
void TestSSHAgent::testConfiguration() | ||
{ | ||
SSHAgent agent; | ||
|
||
// default config must not enable agent | ||
QVERIFY(!agent.isEnabled()); | ||
|
||
agent.setEnabled(true); | ||
QVERIFY(agent.isEnabled()); | ||
|
||
// this will either be an empty string or the real ssh-agent socket path, doesn't matter | ||
QString defaultSocketPath = agent.socketPath(false); | ||
|
||
// overridden path must match default before setting an override | ||
QCOMPARE(agent.socketPath(true), defaultSocketPath); | ||
|
||
agent.setAuthSockOverride(m_agentSocketFileName); | ||
|
||
// overridden path must match what we set | ||
QCOMPARE(agent.socketPath(true), m_agentSocketFileName); | ||
|
||
// non-overridden path must match the default | ||
QCOMPARE(agent.socketPath(false), defaultSocketPath); | ||
} | ||
|
||
void TestSSHAgent::testIdentity() | ||
{ | ||
SSHAgent agent; | ||
agent.setEnabled(true); | ||
agent.setAuthSockOverride(m_agentSocketFileName); | ||
|
||
QVERIFY(agent.isAgentRunning()); | ||
|
||
KeeAgentSettings settings; | ||
bool keyInAgent; | ||
|
||
// test adding a key works | ||
QVERIFY(agent.addIdentity(m_key, settings)); | ||
QVERIFY(agent.checkIdentity(m_key, keyInAgent) && keyInAgent); | ||
|
||
// test removing a key works | ||
QVERIFY(agent.removeIdentity(m_key)); | ||
QVERIFY(agent.checkIdentity(m_key, keyInAgent) && !keyInAgent); | ||
} | ||
|
||
void TestSSHAgent::testRemoveOnClose() | ||
{ | ||
SSHAgent agent; | ||
agent.setEnabled(true); | ||
agent.setAuthSockOverride(m_agentSocketFileName); | ||
|
||
QVERIFY(agent.isAgentRunning()); | ||
|
||
KeeAgentSettings settings; | ||
bool keyInAgent; | ||
|
||
settings.setRemoveAtDatabaseClose(true); | ||
QVERIFY(agent.addIdentity(m_key, settings)); | ||
QVERIFY(agent.checkIdentity(m_key, keyInAgent) && keyInAgent); | ||
agent.setEnabled(false); | ||
QVERIFY(agent.checkIdentity(m_key, keyInAgent) && !keyInAgent); | ||
} | ||
|
||
void TestSSHAgent::testLifetimeConstraint() | ||
{ | ||
SSHAgent agent; | ||
agent.setEnabled(true); | ||
agent.setAuthSockOverride(m_agentSocketFileName); | ||
|
||
QVERIFY(agent.isAgentRunning()); | ||
|
||
KeeAgentSettings settings; | ||
bool keyInAgent; | ||
|
||
settings.setUseLifetimeConstraintWhenAdding(true); | ||
settings.setLifetimeConstraintDuration(2); // two seconds | ||
|
||
// identity should be in agent immediately after adding | ||
QVERIFY(agent.addIdentity(m_key, settings)); | ||
QVERIFY(agent.checkIdentity(m_key, keyInAgent) && keyInAgent); | ||
|
||
QElapsedTimer timer; | ||
timer.start(); | ||
|
||
// wait for the identity to time out | ||
while (!timer.hasExpired(5000)) { | ||
QVERIFY(agent.checkIdentity(m_key, keyInAgent)); | ||
|
||
if (!keyInAgent) { | ||
break; | ||
} | ||
|
||
QTest::qWait(100); | ||
} | ||
|
||
QVERIFY(!keyInAgent); | ||
} | ||
|
||
void TestSSHAgent::testConfirmConstraint() | ||
{ | ||
SSHAgent agent; | ||
agent.setEnabled(true); | ||
agent.setAuthSockOverride(m_agentSocketFileName); | ||
|
||
QVERIFY(agent.isAgentRunning()); | ||
|
||
KeeAgentSettings settings; | ||
bool keyInAgent; | ||
|
||
settings.setUseConfirmConstraintWhenAdding(true); | ||
|
||
QVERIFY(agent.addIdentity(m_key, settings)); | ||
|
||
// we can't test confirmation itself is working but we can test the agent accepts the key | ||
QVERIFY(agent.checkIdentity(m_key, keyInAgent) && keyInAgent); | ||
|
||
QVERIFY(agent.removeIdentity(m_key)); | ||
QVERIFY(agent.checkIdentity(m_key, keyInAgent) && !keyInAgent); | ||
} | ||
|
||
void TestSSHAgent::cleanupTestCase() | ||
{ | ||
if (m_agentProcess.state() != QProcess::NotRunning) { | ||
qDebug() << "Killing ssh-agent pid" << m_agentProcess.pid(); | ||
m_agentProcess.terminate(); | ||
m_agentProcess.waitForFinished(); | ||
} | ||
|
||
m_agentSocketFile.remove(); | ||
} |
Oops, something went wrong.