summaryrefslogtreecommitdiffstats
path: root/kernel/include/linux/pxa168_eth.h
blob: e1ab6e86cdb39491e9a1a311d1e6323bf0b2f9ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 *pxa168 ethernet platform device data definition file.
 */
#ifndef __LINUX_PXA168_ETH_H
#define __LINUX_PXA168_ETH_H

#include <linux/phy.h>

struct pxa168_eth_platform_data {
	int	port_number;
	int	phy_addr;

	/*
	 * If speed is 0, then speed and duplex are autonegotiated.
	 */
	int	speed;		/* 0, SPEED_10, SPEED_100 */
	int	duplex;		/* DUPLEX_HALF or DUPLEX_FULL */
	phy_interface_t intf;

	/*
	 * Override default RX/TX queue sizes if nonzero.
	 */
	int	rx_queue_size;
	int	tx_queue_size;

	/*
	 * init callback is used for board specific initialization
	 * e.g on Aspenite its used to initialize the PHY transceiver.
	 */
	int (*init)(void);
};

#endif /* __LINUX_PXA168_ETH_H */
r: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
#!/usr/bin/env python

# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0


import unittest
import logging

import mock

from functest.ci import run_tests
from functest.utils.constants import CONST


class RunTestsTesting(unittest.TestCase):

    logging.disable(logging.CRITICAL)

    def setUp(self):
        self.sep = 'test_sep'
        self.creds = {'OS_AUTH_URL': 'http://test_ip:test_port/v2.0',
                      'OS_USERNAME': 'test_os_username',
                      'OS_TENANT_NAME': 'test_tenant',
                      'OS_PASSWORD': 'test_password'}
        self.test = {'test_name': 'test_name'}
        self.tier = mock.Mock()
        attrs = {'get_name.return_value': 'test_tier',
                 'get_tests.return_value': ['test1', 'test2'],
                 'get_ci_loop.return_value': 'test_ci_loop',
                 'get_test_names.return_value': ['test1', 'test2']}
        self.tier.configure_mock(**attrs)

        self.tiers = mock.Mock()
        attrs = {'get_tiers.return_value': [self.tier]}
        self.tiers.configure_mock(**attrs)

    @mock.patch('functest.ci.run_tests.logger.info')
    def test_print_separator(self, mock_logger_info):
        run_tests.print_separator(self.sep)
        mock_logger_info.assert_called_once_with(self.sep * 44)

    @mock.patch('functest.ci.run_tests.logger.error')
    def test_source_rc_file_missing_file(self, mock_logger_error):
        with mock.patch('functest.ci.run_tests.os.path.isfile',
                        return_value=False), \
                self.assertRaises(Exception):
            run_tests.source_rc_file()

    @mock.patch('functest.ci.run_tests.logger.debug')
    def test_source_rc_file_default(self, mock_logger_debug):
        with mock.patch('functest.ci.run_tests.os.path.isfile',
                        return_value=True), \
            mock.patch('functest.ci.run_tests.os_utils.source_credentials',
                       return_value=self.creds):
            run_tests.source_rc_file()

    @mock.patch('functest.ci.run_tests.os_snapshot.main')
    def test_generate_os_snapshot(self, mock_os_snap):
            run_tests.generate_os_snapshot()
            self.assertTrue(mock_os_snap.called)

    @mock.patch('functest.ci.run_tests.os_clean.main')
    def test_cleanup(self, mock_os_clean):
            run_tests.cleanup()
            self.assertTrue(mock_os_clean.called)

    def test_update_test_info(self):
        run_tests.GlobalVariables.EXECUTED_TEST_CASES = [self.test]
        run_tests.update_test_info('test_name',
                                   'test_result',
                                   'test_duration')
        exp = self.test
        exp.update({"result": 'test_result',
                    "duration": 'test_duration'})
        self.assertEqual(run_tests.GlobalVariables.EXECUTED_TEST_CASES,
                         [exp])

    def test_get_run_dict_if_defined_default(self):
        mock_obj = mock.Mock()
        with mock.patch('functest.ci.run_tests.'
                        'ft_utils.get_dict_by_test',
                        return_value={'run': mock_obj}):
            self.assertEqual(run_tests.get_run_dict('test_name'),
                             mock_obj)

    @mock.patch('functest.ci.run_tests.logger.error')
    def test_get_run_dict_if_defined_missing_config_option(self,
                                                           mock_logger_error):
        with mock.patch('functest.ci.run_tests.'
                        'ft_utils.get_dict_by_test',
                        return_value=None):
            testname = 'test_name'
            self.assertEqual(run_tests.get_run_dict(testname),
                             None)
            mock_logger_error.assert_called_once_with("Cannot get {}'s config "
                                                      "options"
                                                      .format(testname))

        with mock.patch('functest.ci.run_tests.'
                        'ft_utils.get_dict_by_test',
                        return_value={}):
            testname = 'test_name'
            self.assertEqual(run_tests.get_run_dict(testname),
                             None)

    @mock.patch('functest.ci.run_tests.logger.exception')
    def test_get_run_dict_if_defined_exception(self,
                                               mock_logger_except):
        with mock.patch('functest.ci.run_tests.'
                        'ft_utils.get_dict_by_test',
                        side_effect=Exception):
            testname = 'test_name'
            self.assertEqual(run_tests.get_run_dict(testname),
                             None)
            mock_logger_except.assert_called_once_with("Cannot get {}'s config"
                                                       " options"
                                                       .format(testname))

    def test_run_tests_import_test_class_exception(self):
        mock_test = mock.Mock()
        args = {'get_name': 'test_name',
                'needs_clean': False}
        mock_test.configure_mock(**args)
        with mock.patch('functest.ci.run_tests.print_separator'),\
            mock.patch('functest.ci.run_tests.source_rc_file'), \
            mock.patch('functest.ci.run_tests.get_run_dict',
                       return_value=None), \
                self.assertRaises(Exception) as context:
            run_tests.run_test(mock_test, 'tier_name')
            msg = "Cannot import the class for the test case."
            self.assertTrue(msg in context)

    @mock.patch('functest.ci.run_tests.logger.info')
    def test_run_tier_default(self, mock_logger_info):
        with mock.patch('functest.ci.run_tests.print_separator'), \
                mock.patch('functest.ci.run_tests.run_test') as mock_method:
            run_tests.run_tier(self.tier)
            mock_method.assert_any_call('test1', 'test_tier')
            mock_method.assert_any_call('test2', 'test_tier')
            self.assertTrue(mock_logger_info.called)

    @mock.patch('functest.ci.run_tests.logger.info')
    def test_run_tier_missing_test(self, mock_logger_info):
        with mock.patch('functest.ci.run_tests.print_separator'):
            self.tier.get_tests.return_value = None
            self.assertEqual(run_tests.run_tier(self.tier), 0)
            self.assertTrue(mock_logger_info.called)

    @mock.patch('functest.ci.run_tests.logger.info')
    def test_run_all_default(self, mock_logger_info):
        with mock.patch('functest.ci.run_tests.run_tier') as mock_method, \
            mock.patch('functest.ci.run_tests.generate_report.init'), \
                mock.patch('functest.ci.run_tests.generate_report.main'):
            CONST.CI_LOOP = 'test_ci_loop'
            run_tests.run_all(self.tiers)
            mock_method.assert_any_call(self.tier)
            self.assertTrue(mock_logger_info.called)

    @mock.patch('functest.ci.run_tests.logger.info')
    def test_run_all__missing_tier(self, mock_logger_info):
        with mock.patch('functest.ci.run_tests.generate_report.init'), \
                mock.patch('functest.ci.run_tests.generate_report.main'):
            CONST.CI_LOOP = 'loop_re_not_available'
            run_tests.run_all(self.tiers)
            self.assertTrue(mock_logger_info.called)

    def test_main_failed(self):
        kwargs = {'test': 'test_name', 'noclean': True, 'report': True}
        mock_obj = mock.Mock()
        args = {'get_tier.return_value': False,
                'get_test.return_value': False}
        mock_obj.configure_mock(**args)

        with mock.patch('functest.ci.run_tests.tb.TierBuilder'), \
            mock.patch('functest.ci.run_tests.source_rc_file',
                       side_effect=Exception):
            self.assertEqual(run_tests.main(**kwargs),
                             run_tests.Result.EX_ERROR)

        with mock.patch('functest.ci.run_tests.tb.TierBuilder',
                        return_value=mock_obj), \
            mock.patch('functest.ci.run_tests.source_rc_file',
                       side_effect=Exception):
            self.assertEqual(run_tests.main(**kwargs),
                             run_tests.Result.EX_ERROR)


if __name__ == "__main__":
    unittest.main(verbosity=2)