Exemplo n.º 1
0
    def test_getPrivateKeyPassphrase(self):
        """
        L{SSHUserAuthClient} can get a private key from a file, and return a
        Deferred called back with a private L{Key} object, even if the key is
        encrypted.
        """
        rsaPrivate = Key.fromString(keydata.privateRSA_openssh)
        passphrase = 'this is the passphrase'
        self.rsaFile.setContent(rsaPrivate.toString('openssh', passphrase))
        options = ConchOptions()
        options.identitys = [self.rsaFile.path]
        client = SSHUserAuthClient("user",  options, None)
        # Populate the list of used files
        client.getPublicKey()

        def _getPassword(prompt):
            self.assertEqual(prompt,
                              "Enter passphrase for key '%s': " % (
                              self.rsaFile.path,))
            return passphrase

        def _cbGetPrivateKey(key):
            self.assertEqual(key.isPublic(), False)
            self.assertEqual(key, rsaPrivate)

        self.patch(client, '_getPassword', _getPassword)
        return client.getPrivateKey().addCallback(_cbGetPrivateKey)
Exemplo n.º 2
0
    def test_getPrivateKey(self):
        """
        L{SSHUserAuthClient.getPrivateKey} will load a private key from the
        last used file populated by L{SSHUserAuthClient.getPublicKey}, and
        return a L{Deferred} which fires with the corresponding private L{Key}.
        """
        rsaPrivate = Key.fromString(keydata.privateRSA_openssh)
        options = ConchOptions()
        options.identitys = [self.rsaFile.path]
        client = SSHUserAuthClient("user",  options, None)
        # Populate the list of used files
        client.getPublicKey()

        def _cbGetPrivateKey(key):
            self.assertEqual(key.isPublic(), False)
            self.assertEqual(key, rsaPrivate)

        return client.getPrivateKey().addCallback(_cbGetPrivateKey)
Exemplo n.º 3
0
 def test_getPublicKeyFromFile(self):
     """
     L{SSHUserAuthClient.getPublicKey()} is able to get a public key from
     the first file described by its options' C{identitys} list, and return
     the corresponding public L{Key} object.
     """
     options = ConchOptions()
     options.identitys = [self.rsaFile.path]
     client = SSHUserAuthClient("user",  options, None)
     key = client.getPublicKey()
     self.assertEqual(key.isPublic(), True)
     self.assertEqual(key, self.rsaPublic)
Exemplo n.º 4
0
 def test_getPublicKeyAgentFallback(self):
     """
     If an agent is present, but doesn't return a key,
     L{SSHUserAuthClient.getPublicKey} continue with the normal key lookup.
     """
     options = ConchOptions()
     options.identitys = [self.rsaFile.path]
     agent = SSHAgentClient()
     client = SSHUserAuthClient("user",  options, None)
     client.keyAgent = agent
     key = client.getPublicKey()
     self.assertEqual(key.isPublic(), True)
     self.assertEqual(key, self.rsaPublic)
Exemplo n.º 5
0
 def test_getPublicKeyBadKeyError(self):
     """
     If L{keys.Key.fromFile} raises a L{keys.BadKeyError}, the
     L{SSHUserAuthClient.getPublicKey} tries again to get a public key by
     calling itself recursively.
     """
     options = ConchOptions()
     self.tmpdir.child('id_dsa.pub').setContent(keydata.publicDSA_openssh)
     dsaFile = self.tmpdir.child('id_dsa')
     dsaFile.setContent(keydata.privateDSA_openssh)
     options.identitys = [self.rsaFile.path, dsaFile.path]
     self.tmpdir.child('id_rsa.pub').setContent('not a key!')
     client = SSHUserAuthClient("user",  options, None)
     key = client.getPublicKey()
     self.assertEqual(key.isPublic(), True)
     self.assertEqual(key, Key.fromString(keydata.publicDSA_openssh))
     self.assertEqual(client.usedFiles, [self.rsaFile.path, dsaFile.path])