
* F401 module imported but unused * E271 multiple spaces after keyword * E272 multiple spaces before keyword * E202 remove extraneous whitespace * E711 comparison to None should be 'if cond is None:' * E712 comparison to True/False should be 'if cond is True/False:' or 'if cond:' Change-Id: I56a1dbee2ae17b8315a55215e2c676e0de8311f7
40 lines
1.5 KiB
Python
40 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2013, Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import os
|
|
from unittest import TestCase
|
|
from packstack.installer.processors import *
|
|
|
|
from ..test_base import PackstackTestCaseMixin
|
|
|
|
|
|
class ProcessorsTestCase(PackstackTestCaseMixin, TestCase):
|
|
def test_process_host(self):
|
|
"""Test packstack.installer.processors.process_host"""
|
|
proc_local = process_host('localhost', 'HOSTNAME')
|
|
self.assertIn(proc_local, ['127.0.0.1', '::1'])
|
|
|
|
def test_process_ssh_key(self):
|
|
"""Test packstack.installer.processors.process_ssh_key"""
|
|
path = process_ssh_key(os.path.join(self.tempdir, 'id_rsa'), 'SSH_KEY')
|
|
# test if key was created
|
|
self.assertEquals(True, bool(path))
|
|
# test if key exists
|
|
# XXX: process_ssh_key does not create ssh key during test run
|
|
# ... not sure why, nevertheless it works in normal run
|
|
# self.assertEquals(True, os.path.isfile(path))
|