コード例 #1
0
def test_from_data():
    data = yaml.load(
        open(
            os.path.join(os.path.dirname(__file__), 'Fixtures', 'fixture.yml'),
            'r'))
    flock = Flock.from_data(data["before"])
    imported = flock.data
    for real, got in zip(data["before"], imported):
        for real_value, got_value in zip(real, got):
            assert_equal(real_value, got_value)
コード例 #2
0
def test_match_speed_regression():
    regression_data = yaml.load(
        open(
            os.path.join(os.path.dirname(__file__), 'Fixtures', 'fixture.yml'),
            'r'))
    flock = Flock.from_data(regression_data['before'])
    flock.match_speed_to_nearby_birds()
    res = flock.data
    for after, calculated in zip(regression_data["match"], res):
        for after_value, calculated_value in zip(after, calculated):
            assert_almost_equal(after_value, calculated_value, delta=0.01)
コード例 #3
0
def test_bad_boids_regression():
    regression_data = yaml.load(
        open(
            os.path.join(os.path.dirname(__file__), 'Fixtures', 'fixture.yml'),
            'r'))
    boid_data = regression_data["before"]
    flock = Flock.from_data(boid_data)
    flock.update_boids()
    res = flock.data
    for after, calculated in zip(regression_data["after"], res):
        for after_value, calculated_value in zip(after, calculated):
            assert_almost_equal(after_value, calculated_value, delta=0.01)
コード例 #4
0
def test_properties():
    data = yaml.load(
        open(os.path.join(os.path.dirname(__file__), 'Fixtures',
                          'fixture.yml')))
    flock = Flock.from_data(data["after"])
    offset = flock.offset_tuple
    true_offset = list(zip(data['after'][0],
                           data['after'][1]))  #Caused python3 test to fail
    got_data = flock.data
    for after, got in zip(data["after"], got_data):
        for after_value, got_value in zip(after, got):
            assert_almost_equal(after_value, got_value, delta=0.01)
    for n, item in enumerate(offset):
        assert item[0] == true_offset[n][0]
        assert item[1] == true_offset[n][1]