示例#1
0
def pytest_runtest_setup(item):
    """Run setup actions to prepare the test case.

    See Also:
        https://docs.pytest.org/en/latest/reference.html#_pytest.hookspec.pytest_runtest_setup
    """
    # Only create a managed test case if a kube-config is specified.
    if item.config.getoption("kube_config"):

        # Register a new test case with the manager and setup the test case state.
        test_case = manager.new_test(node_id=item.nodeid, test_name=item.name)

        # Note: These markers are not applied right now, meaning that the resource(s)
        #  which they reference are not added to the cluster yet. They are just
        #  registered with the test case so they can be applied to the cluster on
        #  test case setup.
        #
        #  At this point, the config is not loaded, so there is nothing that could be
        #  added to the cluster. It is safe to skip the teardown (which cleans up the
        #  test namespace) since nothing could be added to the namespace yet.
        try:
            # Register test case state based on markers on the test case.
            test_case.register_rolebindings(
                *markers.rolebindings_from_marker(item, test_case.ns))
            test_case.register_clusterrolebindings(
                *markers.clusterrolebindings_from_marker(item, test_case.ns))

            # Apply manifests for the test case, if any are specified.
            markers.apply_manifests_from_marker(item, test_case)
            markers.apply_manifest_from_marker(item, test_case)

        except Exception as e:
            test_case._pt_setup_failed = True
            raise e
示例#2
0
def pytest_runtest_setup(item):
    """Run setup actions to prepare the test case.

    See Also:
        https://docs.pytest.org/en/latest/reference.html#_pytest.hookspec.pytest_runtest_setup
    """
    # Register a new test case with the manager and setup the test case state.
    test_case = manager.new_test(
        node_id=item.nodeid,
        test_name=item.name,
    )

    # FIXME (etd) - not sure this is really what we want to do. does it make sense
    # to entirely disable the plugin just be specifying the disable flag? probably..
    # but there must be a better way than adding this check (perhaps unregistering the
    # plugin in the pytest_configure hook?)
    disabled = item.config.getoption('kube_disable')
    if not disabled:

        # Register test case state based on markers on the test case
        test_case.register_rolebindings(
            *markers.rolebindings_from_marker(item, test_case.ns)
        )
        test_case.register_clusterrolebindings(
            *markers.clusterrolebindings_from_marker(item, test_case.ns)
        )

        # Apply manifests for the test case, if any are specified.
        markers.apply_manifest_from_marker(item, test_case)
示例#3
0
文件: plugin.py 项目: lfn3/kubetest
def pytest_runtest_setup(item):
    """Run setup actions to prepare the test case.

    See Also:
        https://docs.pytest.org/en/latest/reference.html#_pytest.hookspec.pytest_runtest_setup
    """
    # Previously (v0.3.[0-3]), this setup was gated to only run if the
    # --kube-config commandline flag was set. This was primarily done as an
    # optimization as to not create test metadata for tests that will not use
    # it. https://github.com/vapor-ware/kubetest/issues/130 points out that
    # the kubeconfig may be set without the --kube-config flag by overriding the
    # kubeconfig fixture. In such a case, this would have been skipped -- thus
    # there should NOT be any gating around test case metadata creation since
    # it is too early to tell whether we have all of the info we need.

    namespace_create = True
    namespace_name = None
    for mark in item.iter_markers(name="namespace"):
        namespace_create = mark.kwargs.get('create', True)
        namespace_name = mark.kwargs.get('name', None)

    # Register a new test case with the manager and setup the test case state.
    test_case = manager.new_test(
        node_id=item.nodeid,
        test_name=item.name,
        namespace_create=namespace_create,
        namespace_name=namespace_name,
    )

    # Note: These markers are not applied right now, meaning that the resource(s)
    #  which they reference are not added to the cluster yet. They are just
    #  registered with the test case so they can be applied to the cluster on
    #  test case setup.
    #
    #  At this point, the config is not loaded, so there is nothing that could be
    #  added to the cluster. It is safe to skip the teardown (which cleans up the
    #  test namespace) since nothing could be added to the namespace yet.
    try:
        # Register test case state based on markers on the test case.
        test_case.register_rolebindings(
            *markers.rolebindings_from_marker(item, test_case.ns))
        test_case.register_clusterrolebindings(
            *markers.clusterrolebindings_from_marker(item, test_case.ns))

        # Apply manifests for the test case, if any are specified.
        markers.apply_manifests_from_marker(item, test_case)
        markers.apply_manifest_from_marker(item, test_case)

    except Exception as e:
        test_case._pt_setup_failed = True
        raise e
示例#4
0
def pytest_runtest_setup(item):
    """Run setup actions to prepare the test case.

    See Also:
        https://docs.pytest.org/en/latest/reference.html#_pytest.hookspec.pytest_runtest_setup
    """
    # Register a new test case with the manager and setup the test case state.
    test_case = manager.new_test(
        node_id=item.nodeid,
        test_name=item.name,
    )

    # FIXME (etd) - not sure this is really what we want to do. does it make sense
    # to entirely disable the plugin just be specifying the disable flag? probably..
    # but there must be a better way than adding this check (perhaps unregistering the
    # plugin in the pytest_configure hook?)
    disabled = item.config.getoption('kube_disable')
    if not disabled:

        # Note: These markers are not applied right now, meaning that the resource(s)
        #  which they reference are not added to the cluster yet. They are just
        #  registered with the test case so they can be applied to the cluster on
        #  test case setup.
        #
        #  At this point, the config is not loaded, so there is nothing that could be
        #  added to the cluster. It is safe to skip the teardown (which cleans up the
        #  test namespace) since nothing could be added to the namespace yet.
        try:
            # Register test case state based on markers on the test case.
            test_case.register_rolebindings(
                *markers.rolebindings_from_marker(item, test_case.ns))
            test_case.register_clusterrolebindings(
                *markers.clusterrolebindings_from_marker(item, test_case.ns))

            # Apply manifests for the test case, if any are specified.
            markers.apply_manifest_from_marker(item, test_case)

        except Exception as e:
            test_case._pt_setup_failed = True
            raise e