Beispiel #1
0
def test_save_json():
    path = "./tests/fixtures/dictionary.json"
    _remove(path)
    save(dictionary, path)
    assert os.path.isfile(path)
    content = io.open(path, "rt").read()
    assert content == dictionary_json
Beispiel #2
0
def test_save_npy():
    path = "./tests/fixtures/array.npy"
    _remove(path)
    save(array1, path)
    assert os.path.isfile(path)
    re_read_array = np.load(path)
    assert np.array_equal(array1, re_read_array)
Beispiel #3
0
def test_write_scope_compatibility():
    path = "./tests/fixtures/write_scope_compatibility.txt"
    _remove(path)

    with io_scope("./tests/fixtures"):
        save("test", "write_scope_compatibility.txt")

    assert os.path.isfile(path)
Beispiel #4
0
def test_save_protobuf():
    path = "./tests/fixtures/graphdef.pb"
    _remove(path)
    with tf.Graph().as_default():
        a = tf.Variable(42)
        graphdef = a.graph.as_graph_def()
    save(graphdef, path)
    assert os.path.isfile(path)
Beispiel #5
0
def test_write_scope_compatibility():
    path = "./tests/fixtures/generated_outputs/write_scope_compatibility.txt"
    _remove(path)

    with io_scope("./tests/fixtures/generated_outputs"):
        save("test content", 'write_scope_compatibility.txt')

    assert os.path.isfile(path)
Beispiel #6
0
def test_capturing_saves():
    context = CaptureSaveContext()
    with context:
        save("test", "test_capturing_saves.txt")
    captured = context.captured_saves
    assert len(captured) == 1
    assert "type" in captured[0]
    assert captured[0]["type"] == "txt"
Beispiel #7
0
def test_save_npz_array():
    path = "./tests/fixtures/arrays.npz"
    _remove(path)
    save([array1, array2], path)
    assert os.path.isfile(path)
    re_read_arrays = np.load(path)
    assert all(arr in re_read_arrays for arr in ("arr_0", "arr_1"))
    assert np.array_equal(array1, re_read_arrays["arr_0"])
    assert np.array_equal(array2, re_read_arrays["arr_1"])
Beispiel #8
0
def test_save_npz_dict():
    path = "./tests/fixtures/arrays.npz"
    _remove(path)
    arrays = {"array1": array1, "array2": array2}
    save(arrays, path)
    assert os.path.isfile(path)
    re_read_arrays = np.load(path)
    assert all(arr in re_read_arrays for arr in list(arrays))
    assert np.array_equal(arrays["array1"], re_read_arrays["array1"])
Beispiel #9
0
def test_capturing_saves():
    path = "./tests/fixtures/generated_outputs/test_capturing_saves.txt"
    _remove(path)
    context = CaptureSaveContext()

    with context, io_scope("./tests/fixtures/generated_outputs"):
        save("test", "test_capturing_saves.txt")

    captured = context.captured_saves
    assert len(captured) == 1
    assert "type" in captured[0]
    assert captured[0]["type"] == "txt"
Beispiel #10
0
def test_save_load_pickle():
    path = "./tests/fixtures/generated_outputs/some_data.pickle"
    data = {'test': [1, 2, 3, "some string"], 'numpy_values': array2}
    _remove(path)
    with io.open(path, "wb") as handle:
        with pytest.raises(ValueError):
            save(data, handle)
        save(data, handle, allow_unsafe_formats=True)
    assert os.path.isfile(path)
    with pytest.raises(ValueError):
        loaded_data = load(path)
    loaded_data = load(path, allow_unsafe_formats=True)
    assert loaded_data['test'] == data['test']
    assert np.array_equal(loaded_data['numpy_values'], data['numpy_values'])
Beispiel #11
0
def test_save_compressed_npy():
    uncompressed_path = "./tests/fixtures/generated_outputs/array.npy"
    _remove(uncompressed_path)
    save(array2, uncompressed_path)
    compressed_path = "./tests/fixtures/generated_outputs/array.npy.xz"
    _remove(compressed_path)
    save(array2, compressed_path)
    assert os.path.isfile(uncompressed_path)
    assert os.path.isfile(compressed_path)
    re_read_array = load(compressed_path)
    assert np.array_equal(array2, re_read_array)
    uncompressed_size = os.path.getsize(uncompressed_path)
    compressed_size = os.path.getsize(compressed_path)
    assert compressed_size < uncompressed_size
Beispiel #12
0
def test_save_txt():
    path = "./tests/fixtures/multiline.txt"
    _remove(path)
    string = "".join(["Line {:d}\n".format(i) for i in range(10)])
    save(string, path)
    assert os.path.isfile(path)
Beispiel #13
0
def test_save_named_handle():
    path = "./tests/fixtures/rgbeye.jpg"
    _remove(path)
    with io.open(path, "wb") as handle:
        save(array2, handle)
    assert os.path.isfile(path)
Beispiel #14
0
def test_save_array_txt():
    path = "./tests/fixtures/multiline.txt"
    _remove(path)
    stringarray = ["Line {:d}".format(i) for i in range(10)]
    save(stringarray, path)
    assert os.path.isfile(path)
Beispiel #15
0
def test_save_image_jpg():
    path = "./tests/fixtures/rgbeye.jpg"
    _remove(path)
    save(array2, path)
    assert os.path.isfile(path)
Beispiel #16
0
def test_unknown_compressor():
    with pytest.raises(ValueError):
        save(array2, "test.npy.gz")  # .gz is not currently supported, only xy
Beispiel #17
0
def test_save_image_png():
    path = "./tests/fixtures/generated_outputs/rgbeye.png"
    _remove(path)
    save(array2, path)
    assert os.path.isfile(path)
Beispiel #18
0
def test_unknown_extension():
    with pytest.raises(ValueError):
        save({}, "test.unknown")