Example #1
0
def test_run_package_is_ignored(init_statick):
    """
    Test that ignored package is ignored.

    Expected results: issues is empty and success is True
    """
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = [
        "--path",
        os.path.join(os.path.dirname(__file__), "test_package"),
        "--exceptions",
        os.path.join(os.path.dirname(__file__), "rsc", "exceptions-test.yaml"),
    ]
    parsed_args = args.get_args(sys.argv)
    path = parsed_args.path
    statick.get_config(parsed_args)
    statick.get_exceptions(parsed_args)
    issues, success = statick.run(path, parsed_args)
    assert not issues
    assert success
    try:
        shutil.rmtree(
            os.path.join(os.path.dirname(__file__), "statick-sei_cert"))
    except OSError as ex:
        print("Error: {}".format(ex))
Example #2
0
def test_run_invalid_level(init_statick):
    """
    Test that invalid profile results in invalid level.

    Expected results: issues is None and success is False
    """
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = [
        "--path",
        os.path.dirname(__file__),
        "--profile",
        os.path.join(os.path.dirname(__file__), "rsc", "nonexistent.yaml"),
    ]
    args.output_directory = os.path.dirname(__file__)
    parsed_args = args.get_args(sys.argv)
    path = parsed_args.path
    statick.get_config(parsed_args)
    statick.get_exceptions(parsed_args)
    issues, success = statick.run(path, parsed_args)
    assert issues is None
    assert not success
    try:
        shutil.rmtree(
            os.path.join(os.path.dirname(__file__), "statick-sei_cert"))
    except OSError as ex:
        print("Error: {}".format(ex))
Example #3
0
def test_run_force_tool_list(init_statick):
    """Test running Statick against a missing directory."""
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = [
        "--path",
        os.path.dirname(__file__), "--force-tool-list", "bandit"
    ]
    args.output_directory = os.path.dirname(__file__)
    parsed_args = args.get_args(sys.argv)
    path = parsed_args.path
    statick.get_config(parsed_args)
    statick.get_exceptions(parsed_args)
    issues, success = statick.run(path, parsed_args)
    for tool in issues:
        assert not issues[tool]
    assert success
    try:
        shutil.rmtree(
            os.path.join(os.path.dirname(__file__), "statick-sei_cert"))
    except OSError as ex:
        print("Error: {}".format(ex))
Example #4
0
def test_run_called_process_error(mock_subprocess_check_output):
    """
    Test running Statick when each plugin has a CalledProcessError.

    Expected result: issues is None
    """
    mock_subprocess_check_output.side_effect = subprocess.CalledProcessError(
        1, "", output="mocked error")
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = [
        "--output-directory",
        os.path.dirname(__file__),
        "--path",
        os.path.dirname(__file__),
    ]
    parsed_args = args.get_args(sys.argv)
    path = parsed_args.path
    statick.get_config(parsed_args)
    statick.get_exceptions(parsed_args)
    issues, _ = statick.run(path, parsed_args)
    for tool in issues:
        assert not issues[tool]
    try:
        shutil.rmtree(
            os.path.join(os.path.dirname(__file__), "statick-sei_cert"))
    except OSError as ex:
        print("Error: {}".format(ex))
Example #5
0
def test_run_file_cmd_does_not_exist(init_statick):
    """
    Test when file command does not exist.

    Expected results: no issues found even though Python file without extension does
    have issues
    """
    with modified_environ(PATH=""):
        args = Args("Statick tool")
        args.parser.add_argument("--path", help="Path of package to scan")

        statick = Statick(args.get_user_paths())
        statick.gather_args(args.parser)
        sys.argv = [
            "--path",
            os.path.join(os.path.dirname(__file__), "test_package"),
            "--output-directory",
            os.path.dirname(__file__),
            "--force-tool-list",
            "pylint",
        ]
        parsed_args = args.get_args(sys.argv)
        path = parsed_args.path
        statick.get_config(parsed_args)
        statick.get_exceptions(parsed_args)
        issues, success = statick.run(path, parsed_args)
    for tool in issues:
        assert not issues[tool]
    assert success
    try:
        shutil.rmtree(
            os.path.join(os.path.dirname(__file__), "test_package-sei_cert"))
    except OSError as ex:
        print("Error: {}".format(ex))
Example #6
0
def init_statick():
    """Fixture to initialize a Statick instance."""
    args = Args("Statick tool")

    return Statick(
        args.get_user_paths(["--user-paths",
                             os.path.dirname(__file__)]))
Example #7
0
def test_run_invalid_tool_plugin(init_statick):
    """
    Test that a non-existent tool plugin results in failure.

    Expected results: issues is None and success is False
    """
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = [
        "--path",
        os.path.dirname(__file__),
        "--profile",
        os.path.join(os.path.dirname(__file__), "rsc", "profile-missing-tool.yaml"),
        "--config",
        os.path.join(os.path.dirname(__file__), "rsc", "config-missing-tool.yaml"),
    ]
    parsed_args = args.get_args(sys.argv)
    path = parsed_args.path
    statick.get_config(parsed_args)
    statick.get_exceptions(parsed_args)
    issues, success = statick.run(path, parsed_args)
    assert issues is None
    assert not success
    try:
        shutil.rmtree(os.path.join(os.path.dirname(__file__), "statick-custom"))
    except OSError as ex:
        print(f"Error: {ex}")
Example #8
0
def test_run_mkdir_oserror(mocked_mkdir, init_statick):
    """
    Test the behavior when mkdir in run throws an OSError.

    Expected results: issues is None and success is False
    """
    mocked_mkdir.side_effect = OSError("error")
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = [
        "--path",
        os.path.dirname(__file__),
        "--output-directory",
        os.path.dirname(__file__),
    ]
    parsed_args = args.get_args(sys.argv)
    path = parsed_args.path
    statick.get_config(parsed_args)
    statick.get_exceptions(parsed_args)
    issues, success = statick.run(path, parsed_args)
    assert issues is None
    assert not success
    try:
        shutil.rmtree(
            os.path.join(os.path.dirname(__file__), "statick-sei_cert"))
    except OSError as ex:
        print("Error: {}".format(ex))
Example #9
0
def test_run_discovery_dependency(init_statick):
    """
    Test that a discovery plugin can run its dependencies.

    Expected results: issues is None and success is False
    """
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = [
        "--path",
        os.path.dirname(__file__),
        "--config",
        os.path.join(os.path.dirname(__file__), "rsc",
                     "config-discovery-dependency.yaml"),
    ]
    args.output_directory = os.path.dirname(__file__)
    parsed_args = args.get_args(sys.argv)
    path = parsed_args.path
    statick.get_config(parsed_args)
    statick.get_exceptions(parsed_args)
    _, success = statick.run(path, parsed_args)
    assert success
    try:
        shutil.rmtree(
            os.path.join(os.path.dirname(__file__), "statick-sei_cert"))
    except OSError as ex:
        print("Error: {}".format(ex))
Example #10
0
def test_run_no_reporting_plugins(init_statick):
    """
    Test that no reporting plugins returns unsuccessful.

    Expected results: issues is None and success is False
    """
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = [
        "--path",
        os.path.dirname(__file__),
        "--config",
        os.path.join(os.path.dirname(__file__), "rsc",
                     "config-no-reporting-plugins.yaml"),
    ]
    args.output_directory = os.path.dirname(__file__)
    parsed_args = args.get_args(sys.argv)
    path = parsed_args.path
    statick.get_config(parsed_args)
    statick.get_exceptions(parsed_args)
    issues, success = statick.run(path, parsed_args)
    for tool in issues:
        assert not issues[tool]
    assert success
    try:
        shutil.rmtree(
            os.path.join(os.path.dirname(__file__), "statick-sei_cert"))
    except OSError as ex:
        print("Error: {}".format(ex))
Example #11
0
def test_run_output_is_not_directory(mocked_mkdir, init_statick):
    """Test running Statick against a missing directory."""
    mocked_mkdir.side_effect = OSError("error")
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = [
        "--output-directory",
        "/tmp/not_a_directory",
        "--path",
        os.path.dirname(__file__),
    ]
    parsed_args = args.get_args(sys.argv)
    path = parsed_args.path
    statick.get_config(parsed_args)
    statick.get_exceptions(parsed_args)
    issues, success = statick.run(path, parsed_args)
    assert issues is None
    assert not success
    try:
        shutil.rmtree(
            os.path.join(os.path.dirname(__file__), "statick-sei_cert"))
    except OSError as ex:
        print("Error: {}".format(ex))
Example #12
0
def init_statick_ws():
    """Fixture to initialize a Statick instance."""
    # setup
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)

    argv = [
        "--output-directory",
        os.path.join(os.path.dirname(__file__), "test_workspace"),
        "--path",
        os.path.join(os.path.dirname(__file__), "test_workspace"),
    ]
    yield (statick, args, argv)

    # cleanup
    try:
        shutil.rmtree(
            os.path.join(os.path.dirname(__file__), "test_workspace",
                         "all_packages-sei_cert"))
        shutil.rmtree(
            os.path.join(os.path.dirname(__file__), "test_workspace",
                         "test_package-sei_cert"))
        shutil.rmtree(
            os.path.join(os.path.dirname(__file__), "test_workspace",
                         "test_package2-sei_cert"))
    except OSError as ex:
        print("Error: {}".format(ex))
Example #13
0
def test_run():
    """Test running Statick."""
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = [
        "--output-directory",
        os.path.dirname(__file__),
        "--path",
        os.path.dirname(__file__),
    ]
    parsed_args = args.get_args(sys.argv)
    path = parsed_args.path
    statick.get_config(parsed_args)
    statick.get_exceptions(parsed_args)
    issues, success = statick.run(path, parsed_args)
    for tool in issues:
        assert not issues[tool]
    try:
        shutil.rmtree(
            os.path.join(os.path.dirname(__file__), "statick-sei_cert"))
    except OSError as ex:
        print("Error: {}".format(ex))
Example #14
0
def test_args_user_paths_missing():
    """
    Test the args module without any user paths specified.

    Expected result: No paths
    """
    args = Args("test")
    user_paths = args.get_user_paths([])
    assert user_paths == []
Example #15
0
def test_args_user_paths_missing_dir():
    """
    Test the args module with a path to a nonexistent directory.

    Expected result: no paths
    """
    args = Args("test")
    user_paths = args.get_user_paths(["--user-paths", "nonexistent"])
    assert user_paths == []
Example #16
0
def test_args_user_paths_undefined():
    """
    Test the args module with user paths undefined.

    Expected result: No paths
    """
    args = Args("test")
    user_paths = args.get_user_paths(["--user-paths", None])
    assert user_paths == []
Example #17
0
def test_print_exit_status_errors(caplog):
    """Test that expected error status message is logged."""
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")
    statick = Statick(args.get_user_paths())

    statick.print_exit_status(False)
    output = caplog.text.splitlines()[0]
    assert "Statick exiting with errors." in output
Example #18
0
def test_print_exit_status_success(caplog):
    """Test that expected success status message is logged."""
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")
    statick = Statick(args.get_user_paths())
    logging.root.setLevel(logging.INFO)

    statick.print_exit_status(True)
    # This should contain logging output but is empty for INFO level.
    output = caplog.text.splitlines()[0]
    assert "Statick exiting with success." in output
Example #19
0
def test_print_no_issues(caplog):
    """Test that expected error message is logged when no issues are found."""
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.print_no_issues()
    output = caplog.text.splitlines()[0]
    assert (
        "Something went wrong, no information about issues. Statick exiting with errors."
        in output)
Example #20
0
def test_args_user_paths_present():
    """
    Test the args module with a valid path.

    Expected result: The path we specified
    """
    args = Args("test")
    user_paths = args.get_user_paths(
        ["--user-paths",
         os.path.join(os.path.dirname(__file__), "test")])
    assert user_paths == [os.path.join(os.path.dirname(__file__), "test")]
Example #21
0
def test_run_missing_path(init_statick):
    """Test running Statick against a package that does not exist."""
    args = Args("Statick tool")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = ["--output-directory", os.path.dirname(__file__)]
    parsed_args = args.get_args(sys.argv)
    path = "/tmp/invalid"
    statick.get_config(parsed_args)
    issues, success = statick.run(path, parsed_args)
    assert issues is None
    assert not success
Example #22
0
def test_args_user_paths_multiple_definitions():
    """
    Test the args module with user paths defined multiple times.

    Expected result: The second entry wins
    """
    args = Args('test')
    user_paths = args.get_user_paths([
        '--user-paths',
        os.path.join(os.path.dirname(__file__), 'test'), '--user-paths',
        os.path.join(os.path.dirname(__file__), 'test2')
    ])
    # Expected result: only the second is used
    assert user_paths == [os.path.join(os.path.dirname(__file__), 'test2')]
Example #23
0
def test_run_missing_config(init_statick):
    """Test running Statick with a missing config file."""
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = ["--output-directory", os.path.dirname(__file__),
                "--path", os.path.dirname(__file__)]
    parsed_args = args.get_args(sys.argv)
    path = parsed_args.path
    issues, success = statick.run(path, parsed_args)
    assert issues is None
    assert not success
Example #24
0
def test_gather_args(init_statick):
    """
    Test setting and getting arguments.

    Expected result: Arguments are set properly
    """
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = ["--output-directory", os.path.dirname(__file__),
                "--path", os.path.dirname(__file__)]
    parsed_args = args.get_args(sys.argv)
    assert "path" in parsed_args
    assert "output_directory" in parsed_args
Example #25
0
def test_run_output_is_not_directory(init_statick):
    """Test running Statick against a missing directory."""
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = ["--output-directory", "/tmp/not_a_directory",
                "--path", os.path.dirname(__file__)]
    parsed_args = args.get_args(sys.argv)
    path = parsed_args.path
    statick.get_config(parsed_args)
    statick.get_exceptions(parsed_args)
    issues, success = statick.run(path, parsed_args)
    assert issues is None
    assert not success
Example #26
0
def test_run_missing_path(init_statick):
    """Test running Statick against a package that does not exist."""
    args = Args("Statick tool")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = ["--output-directory", os.path.dirname(__file__)]
    parsed_args = args.get_args(sys.argv)
    path = "/tmp/invalid"
    statick.get_config(parsed_args)
    issues, success = statick.run(path, parsed_args)
    assert issues is None
    assert not success
    try:
        shutil.rmtree(os.path.join(os.path.dirname(__file__), "statick-sei_cert"))
    except OSError as ex:
        print(f"Error: {ex}")
Example #27
0
def test_args_user_paths_multiple_paths():
    """
    Test the args module with multiple user paths separated by commas.

    Expected result: Both paths are loaded
    """
    args = Args('test')
    user_paths = args.get_user_paths([
        '--user-paths',
        os.path.join(os.path.dirname(__file__), 'test') + ',' +
        os.path.join(os.path.dirname(__file__), 'test2')
    ])
    # Expected result: both show up
    assert user_paths == [
        os.path.join(os.path.dirname(__file__), 'test'),
        os.path.join(os.path.dirname(__file__), 'test2')
    ]
Example #28
0
def test_run():
    """Test running Statick."""
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = ["--output-directory", os.path.dirname(__file__),
                "--path", os.path.dirname(__file__)]
    parsed_args = args.get_args(sys.argv)
    path = parsed_args.path
    statick.get_config(parsed_args)
    statick.get_exceptions(parsed_args)
    issues, success = statick.run(path, parsed_args)
    for tool in issues:
        assert not issues[tool]
    assert not success
Example #29
0
def test_args_user_paths_multiple_paths():
    """
    Test the args module with multiple user paths separated by commas.

    Expected result: Both paths are loaded
    """
    args = Args("test")
    user_paths = args.get_user_paths([
        "--user-paths",
        os.path.join(os.path.dirname(__file__), "test") + "," +
        os.path.join(os.path.dirname(__file__), "test2"),
    ])
    # Expected result: both show up
    assert user_paths == [
        os.path.join(os.path.dirname(__file__), "test"),
        os.path.join(os.path.dirname(__file__), "test2"),
    ]
Example #30
0
def test_print_logging_level_invalid():
    """Test that log level is set to a valid level given garbage input."""
    args = Args("Statick tool")
    args.parser.add_argument("--path", help="Path of package to scan")

    statick = Statick(args.get_user_paths())
    statick.gather_args(args.parser)
    sys.argv = [
        "--path",
        os.path.dirname(__file__),
        "--log",
        "NOT_A_VALID_LEVEL",
    ]
    args.output_directory = os.path.dirname(__file__)
    parsed_args = args.get_args(sys.argv)
    statick.set_logging_level(parsed_args)

    logger = logging.getLogger()
    assert logger.getEffectiveLevel() == logging.WARNING