示例#1
0
def test_get_assertion_issues_no_type(session):
    """Confirm issue is detected when checking assertion dictionary missing a type."""
    issue = get_assertion_issues({
        'name': 'assertion_name',
        # missing 'type'
    }, session=session)
    # Issue message should indicate type is missing
    assert 'No type specified' in issue
示例#2
0
def test_get_assertion_issues_invalid_type(session):
    """Confirm issue is detected when checking assertion dictionary with an invalid type."""
    issue = get_assertion_issues({
        'name': 'assertion_name',
        'type': 'invalid_assertion_type',
    }, session=session)
    # Issue message should indicate type is missing
    assert 'Unknown assertion type' in issue
示例#3
0
def test_get_assertion_issues(session):
    """Confirm no issues are detected when checking valid assertion dictionary."""
    assert get_assertion_issues({
        'name': 'assertion_name',
        'type': 'assert_all_flows_fail',
        'parameters': {
            'startLocation': 'start',
            'headers': 'headers',
        },
    }, session=session) is None, 'No issues from properly formatted assertion'
示例#4
0
def test_get_assertion_issues_no_name(session):
    """Confirm issue is detected when checking assertion dictionary missing a name."""
    issue = get_assertion_issues({
        # missing 'name'
        'type': 'assert_all_flows_fail',
        'parameters': {
            'startLocation': 'start',
            'header': 'header',
        },
    }, session=session)
    # Issue message should indicate name is missing
    assert 'No name specified' in issue
示例#5
0
def test_get_assertion_issues_unsupported_assertion(session):
    """Confirm issue is detected when checking an unsupported assertion."""
    issue = get_assertion_issues({
        'name': 'assertion_name',
        'type': 'assert_that',
        'parameters': {
            'assertion': 'something',
        },
    }, session=session)
    # Issue message should indicate this assertion isn't supported by this session
    assert 'does not exist in the current session' in issue
    # and reference that parameter's name
    assert 'Make sure you are establishing a session with the correct type' in issue
示例#6
0
def test_get_assertion_issues_missing_param(session):
    """Confirm issue is detected when checking assertion dictionary missing some mandatory parameter."""
    issue = get_assertion_issues({
        'name': 'assertion_name',
        'type': 'assert_all_flows_fail',
        'parameters': {
            'startLocation': 'start',
            # missing 'header' param
        },
    }, session=session)
    # Issue message should indicate there is a missing parameter
    assert 'Missing mandatory parameter' in issue
    # and reference that parameter's name
    assert 'header' in issue
示例#7
0
def test_get_assertion_issues_extra_param(session):
    """Confirm issue is detected when checking assertion dictionary with extra assertion parameters."""
    issue = get_assertion_issues({
        'name': 'assertion_name',
        'type': 'assert_all_flows_fail',
        'parameters': {
            'startLocation': 'start',
            'headers': 'headers',
            'extraParam': 'extra',
        },
    }, session=session)
    # Issue message should indicate there is an invalid parameter
    assert 'Invalid parameter' in issue
    # and reference that parameter's name
    assert 'extraParam' in issue