Exemplo n.º 1
0
def test_squash_omits_comments():
    history_entries = [
        squashing.HistoryEntry(comment='A', values_diff={'status': ['A', 'B']}),
        squashing.HistoryEntry(comment='B', values_diff={'status': ['B', 'C']}),
        squashing.HistoryEntry(comment='C', values_diff={'status': ['C', 'B']}),
    ]
    squashed = squashing.squash_history_entries(history_entries)
    assert_(history_entries, squashed)
def test_squash_remove_noop_changes():
    history_entries = [
        squashing.HistoryEntry(comment='', values_diff={'status': ['A', 'B']}),
        squashing.HistoryEntry(comment='', values_diff={'status': ['B', 'A']}),
    ]
    expected = []

    squashed = squashing.squash_history_entries(history_entries)
    assert_(expected, squashed)
Exemplo n.º 3
0
def test_squash_arrays():
    history_entries = [
        squashing.HistoryEntry(comment='', values_diff={'tags': [['A', 'B'], ['A']]}),
        squashing.HistoryEntry(comment='', values_diff={'tags': [['A'], ['A', 'C']]}),
    ]
    expected = [
        squashing.HistoryEntry(comment='', values_diff={'tags': [['A', 'B'], ['A', 'C']]}),
    ]

    squashed = squashing.squash_history_entries(history_entries)
    assert_(expected, squashed, ordered=False)
Exemplo n.º 4
0
def test_squash_values_diff_with_multiple_fields():
    history_entries = [
        squashing.HistoryEntry(comment='', values_diff={'status': ['A', 'B'], 'type': ['1', '2']}),
        squashing.HistoryEntry(comment='', values_diff={'status': ['B', 'C']}),
    ]
    expected = [
        squashing.HistoryEntry(comment='', values_diff={'type': ['1', '2']}),
        squashing.HistoryEntry(comment='', values_diff={'status': ['A', 'C']}),
    ]

    squashed = squashing.squash_history_entries(history_entries)
    assert_(expected, squashed, ordered=False)
def test_squash_allowed_grouped_at_the_end():
    history_entries = [
        squashing.HistoryEntry(comment='A', values_diff={}),
        squashing.HistoryEntry(comment='', values_diff={'status': ['A', 'B']}),
        squashing.HistoryEntry(comment='', values_diff={'status': ['B', 'C']}),
        squashing.HistoryEntry(comment='', values_diff={'status': ['C', 'D']}),
        squashing.HistoryEntry(comment='', values_diff={'status': ['D', 'C']}),
        squashing.HistoryEntry(comment='Z', values_diff={}),
    ]
    expected = [
        squashing.HistoryEntry(comment='A', values_diff={}),
        squashing.HistoryEntry(comment='Z', values_diff={}),
        squashing.HistoryEntry(comment='', values_diff={'status': ['A', 'C']}),
    ]

    squashed = squashing.squash_history_entries(history_entries)
    assert_(expected, squashed)