Exemplo n.º 1
0
 def test_valid_data(self):
     """
     Test HardwareCheck creation with valid data
     """
     hw = HardwareCheck(name='hw', data=self.valid_data)
     hw.validate()
     assert hw.data == self.valid_data
Exemplo n.º 2
0
 def test_disk_exception(self):
     """
     Test disk throws exception when sector test fails
     """
     with pytest.raises(
             j.exceptions.RuntimeError,
             message='Template should raise error if stdout is not test\n'):
         hw = HardwareCheck(name='hw', data=self.valid_data)
         disks = {
             'blockdevices': [{
                 'tran': 'usb'
             }, {
                 'rota': '1',
                 'name': 'hdd',
                 'size': 16,
                 'phy-sec': 2,
             }, {
                 'rota': '0',
                 'name': 'ssd',
                 'size': 16,
                 'phy-sec': 2,
             }]
         }
         client = MagicMock()
         client.disk.list = MagicMock(return_value=disks)
         hw._disk(client)
Exemplo n.º 3
0
    def test_disk(self):
        """
        test disk returns correct count
        """
        hw = HardwareCheck(name='hw', data=self.valid_data)
        disks = {
            'blockdevices': [{
                'tran': 'usb'
            }, {
                'rota': '1',
                'name': 'hdd',
                'size': 16,
                'phy-sec': 2,
            }, {
                'rota': '0',
                'name': 'ssd',
                'size': 16,
                'phy-sec': 2,
            }]
        }
        client = MagicMock()
        system_get_result = MagicMock(stdout='test\n')
        system = MagicMock()
        system.get = MagicMock(return_value=system_get_result)
        client.system = MagicMock(return_value=system)
        client.disk.list = MagicMock(return_value=disks)
        hdd, ssd = hw._disk(client)

        assert hdd == 1
        assert ssd == 1
Exemplo n.º 4
0
 def _test_create_hw_invalid(self, data, missing_key):
     with pytest.raises(
             ValueError,
             message=
             'template should fail to instantiate if data dict is missing the %s'
             % missing_key):
         hw = HardwareCheck(name='hw', data=data)
         hw.validate()
Exemplo n.º 5
0
    def test_ram(self):
        """
        Test ram returns correct ram
        """
        hw = HardwareCheck(name='hw', data=self.valid_data)
        client = MagicMock()
        client.info.mem = MagicMock(return_value={'total': 1048576})
        ram = hw._ram(client)

        assert ram == 1
Exemplo n.º 6
0
    def test_cpu(self):
        """
        Test cpu returns correct name
        """
        hw = HardwareCheck(name='hw', data=self.valid_data)
        client = MagicMock()
        client.info.cpu = MagicMock(return_value=[{
            'modelName': 'model name cpu'
        }])
        cpu = hw._cpu(client)

        assert cpu == 'cpu'
Exemplo n.º 7
0
 def test_get_bot_client(self):
     """
     test _get_bot_client
     """
     client_get = patch('js9.j.clients.telegram_bot.get',
                        MagicMock()).start()
     hw = HardwareCheck(name='hw', data=self.valid_data)
     hw._get_bot_client()
     data = {
         'bot_token_': hw.data['botToken'],
     }
     client_get.assert_called_with(instance=hw.guid,
                                   data=data,
                                   create=True,
                                   die=True)
Exemplo n.º 8
0
    def test_check_succussful(self):
        """
        Test check is successful when hardware is supported
        :return:
        """
        patch('js9.j.clients.zos.get', MagicMock()).start()
        hw = HardwareCheck(name='hw', data=self.valid_data)
        supported = self.valid_data['supported'][0]
        hw._disk = MagicMock(return_value=(supported['hddCount'],
                                           supported['ssdCount']))
        hw._ram = MagicMock(return_value=supported['ram'])
        hw._cpu = MagicMock(return_value=supported['cpu'])
        client = MagicMock()
        hw._get_bot_client = MagicMock(return_value=client)
        hw.check('node')

        client.send_message.assert_called_once_with(
            'chatId',
            'Node with id node has completed the hardwarecheck successfully.')
Exemplo n.º 9
0
    def test_check_fail(self):
        """
        Test that check fails if any of hardware specs arent supported
        """
        patch('js9.j.clients.zos.get', MagicMock()).start()
        hw = HardwareCheck(name='hw', data=self.valid_data)
        supported = self.valid_data['supported'][0]
        hw._disk = MagicMock(return_value=(supported['hddCount'],
                                           supported['ssdCount']))
        hw._cpu = MagicMock(return_value=supported['cpu'])
        client = MagicMock()
        hw._get_bot_client = MagicMock(return_value=client)

        # check with no supported ram
        hw._ram = MagicMock(return_value=supported['ram'] - 6)
        with pytest.raises(
                j.exceptions.RuntimeError,
                message='Template should raise error if ram is not supported'):
            hw.check('node')
        hw._ram = MagicMock(return_value=supported['ram'])

        # check with no supported cpu
        hw._cpu = MagicMock(return_value='othercpu')
        with pytest.raises(
                j.exceptions.RuntimeError,
                message='Template should raise error if cpu is not supported'):
            hw.check('node')
        hw._cpu = MagicMock(return_value=supported['cpu'])

        # check with no supported hdd
        hw._disk = MagicMock(return_value=(0, supported['ssdCount']))
        with pytest.raises(
                j.exceptions.RuntimeError,
                message=
                'Template should raise error if hddCount is not supported'):
            hw.check('node')
        hw._disk = MagicMock(return_value=(supported['hddCount'],
                                           supported['ssdCount']))

        # check with no supported ssd
        hw._disk = MagicMock(return_value=(supported['hddCount'], 0))
        with pytest.raises(
                j.exceptions.RuntimeError,
                message=
                'Template should raise error if ssdCount is not supported'):
            hw.check('node')