Ejemplo n.º 1
0
def test_Solution_solution_no_operations():
    '''
    Testing Solution.solution() on A = []
    '''
    N, A = 42, []

    true_sol = [0] * N
    sol = Solution.solution(N, A)
    solution_passed = true_sol == sol
    return solution_passed
Ejemplo n.º 2
0
def test_Solution_solution_increment_and_set():
    '''
    Testing Solution.solution() on N, A = 3, [1,4]
    '''
    N, A = 3, [1, 4]

    true_sol = [1] * N
    sol = Solution.solution(N, A)
    solution_passed = true_sol == sol
    return solution_passed
Ejemplo n.º 3
0
def test_Solution_solution_no_containers():
    '''
    Testing Solution.solution() on N = 0
    '''
    N, A = 0, [1, 2, 3]

    true_sol = []
    sol = Solution.solution(N, A)
    solution_passed = true_sol == sol
    return solution_passed
Ejemplo n.º 4
0
def test_Solution_Node_init():
    '''
    Testing Solution.Node.__init__()
    '''

    val, time = 42, 0
    n = Solution.Node(42, 0)

    init_passed = (val, time) == (n.val, n.time)
    return init_passed
Ejemplo n.º 5
0
def test_Solution_Counters_init():
    '''
    Testing Solution.Counters.__init__()
    '''

    N = 42
    C = Solution.Counters(N)

    init_passed = (N, {}, 0, 0, 0) == (C.N, C.counter, C.min_time, C.min,
                                       C.max)
    return init_passed
Ejemplo n.º 6
0
def test_Solution_solution_increment_set_increment_set_increment():
    '''
    Testing Solution.solution() on N, A = 3, [1,4,2,4,3]
    '''
    N, A = 3, [1, 4, 2, 4, 3]

    true_sol = [2] * N
    true_sol[2] = 3
    sol = Solution.solution(N, A)
    solution_passed = true_sol == sol
    return solution_passed
Ejemplo n.º 7
0
def test_Solution_solution_single_increment():
    '''
    Testing Solution.solution() on N, A = 3, [1]
    '''
    N, A = 3, [1]

    true_sol = [0] * N
    true_sol[0] = 1
    sol = Solution.solution(N, A)
    solution_passed = true_sol == sol
    return solution_passed
Ejemplo n.º 8
0
def test_Solution_Counters_get_all_counters():
    '''
    Testing Solution.Counters.get_all_counters()
    '''

    N = 3
    C = Solution.Counters(N)

    counters = C.get_all_counters()

    true_sol = ([0] * N)
    get_all_counters_passed = true_sol == counters

    return get_all_counters_passed
Ejemplo n.º 9
0
def test_Solution_Counters_increment_at_start():
    '''
    Testing Solution.Counters.increment() at start
    '''

    N = 3
    C = Solution.Counters(N)

    i, time = 1, 1
    C.increment(i, time)

    true_sol = (N, 1, time, 0, 0, 1)
    sol = (C.N, C.counter[i].val, C.counter[i].time, C.min_time, C.min, C.max)
    increment_passed = true_sol == sol
    return increment_passed
Ejemplo n.º 10
0
def test_Solution_Counters_set_min_to_max_after_increment():
    '''
    Testing Solution.Counters.set_min_to_max() after increment()
    '''

    N = 3
    C = Solution.Counters(N)

    i, time = 1, 1
    C.increment(i, time)

    time_plus_1 = time + 1
    C.set_min_to_max(time_plus_1)

    set_min_to_max_passed = (time_plus_1, 1, 1) == (C.min_time, C.min, C.max)
    return set_min_to_max_passed
Ejemplo n.º 11
0
def test_Solution_Counters_get_all_counters_after_increment():
    '''
    Testing Solution.Counters.get_all_counters() after increment()
    '''

    N = 3
    C = Solution.Counters(N)

    i, time = 1, 1
    C.increment(i, time)

    counters = C.get_all_counters()

    true_sol = ([0] * N)
    true_sol[i - 1] = 1
    get_all_counters_passed = true_sol == counters

    return get_all_counters_passed
Ejemplo n.º 12
0
def test_Solution_Counters_get_all_counters_after_increment_and_set_min_to_max(
):
    '''
    Testing Solution.Counters.get_all_counters()
    after increment() and set_min_to_max()
    '''

    N = 3
    C = Solution.Counters(N)

    i, time = 1, 1
    C.increment(i, time)

    time_plus_1 = time + 1
    C.set_min_to_max(time_plus_1)

    counters = C.get_all_counters()

    true_sol = ([1] * N)
    get_all_counters_passed = true_sol == counters

    return get_all_counters_passed
Ejemplo n.º 13
0
def test_Solution_Counters_get_all_counters_after_inc_set_inc_set():
    '''
    Testing Solution.Counters.get_all_counters() after
    increment(), set_min_to_max(), increment(), set_min_to_max()
    '''

    N = 3
    C = Solution.Counters(N)

    time = 0
    for i in [1, 2]:
        time += 1
        C.increment(i, time)

        time += 1
        C.set_min_to_max(time)

    counters = C.get_all_counters()

    true_sol = ([2] * N)
    get_all_counters_passed = true_sol == counters

    return get_all_counters_passed