mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
75 lines
3.0 KiB
Python
75 lines
3.0 KiB
Python
import sys
|
|
import os
|
|
import pytest
|
|
import grpc
|
|
import tempfile
|
|
|
|
sys.path.insert(1, os.path.join(sys.path[0], '../../'))
|
|
import rips
|
|
|
|
import dataroot
|
|
|
|
def test_loadProject(rips_instance, initialize_test):
|
|
project = rips_instance.project.open(dataroot.PATH + "/TEST10K_FLT_LGR_NNC/10KWithWellLog.rsp")
|
|
case = project.cases()[0]
|
|
assert(case is not None)
|
|
assert(case.name == "TEST10K_FLT_LGR_NNC")
|
|
assert(case.id == 0)
|
|
cases = rips_instance.project.cases()
|
|
assert(len(cases) is 1)
|
|
|
|
def test_well_log_plots(rips_instance, initialize_test):
|
|
project = rips_instance.project.open(dataroot.PATH + "/TEST10K_FLT_LGR_NNC/10KWithWellLog.rsp")
|
|
plots = project.plots()
|
|
well_log_plots = []
|
|
for plot in plots:
|
|
well_log_plot = plot.cast(rips.WellLogPlot)
|
|
if well_log_plot is not None:
|
|
well_log_plot.print_object_info()
|
|
assert(well_log_plot.depth_type == "MEASURED_DEPTH")
|
|
well_log_plots.append(well_log_plot)
|
|
assert(len(well_log_plots) == 2)
|
|
|
|
with tempfile.TemporaryDirectory(prefix="rips") as tmpdirname:
|
|
for well_log_plot in well_log_plots:
|
|
well_log_plot.depth_type = "TRUE_VERTICAL_DEPTH_RKB"
|
|
well_log_plot.update()
|
|
if rips_instance.is_gui():
|
|
well_log_plot.export_snapshot(tmpdirname)
|
|
well_log_plot.export_data_as_las(tmpdirname)
|
|
files = os.listdir(tmpdirname)
|
|
print (files)
|
|
if rips_instance.is_gui():
|
|
assert(len(files) == 4)
|
|
else:
|
|
assert(len(files) == 2)
|
|
|
|
plots2 = project.plots()
|
|
for plot2 in plots2:
|
|
well_log_plot2 = plot2.cast(rips.WellLogPlot)
|
|
if well_log_plot2 is not None:
|
|
assert(well_log_plot2.depth_type == "TRUE_VERTICAL_DEPTH_RKB")
|
|
|
|
@pytest.mark.skipif(sys.platform.startswith('linux'), reason="Brugge is currently exceptionally slow on Linux")
|
|
def test_loadGridCaseGroup(rips_instance, initialize_test):
|
|
case_paths = []
|
|
case_paths.append(dataroot.PATH + "/Case_with_10_timesteps/Real0/BRUGGE_0000.EGRID")
|
|
case_paths.append(dataroot.PATH + "/Case_with_10_timesteps/Real10/BRUGGE_0010.EGRID")
|
|
grid_case_group = rips_instance.project.create_grid_case_group(case_paths=case_paths)
|
|
assert(grid_case_group is not None and grid_case_group.group_id == 0)
|
|
|
|
def test_exportSnapshots(rips_instance, initialize_test):
|
|
if not rips_instance.is_gui():
|
|
pytest.skip("Cannot run test without a GUI")
|
|
|
|
case_path = dataroot.PATH + "/TEST10K_FLT_LGR_NNC/TEST10K_FLT_LGR_NNC.EGRID"
|
|
rips_instance.project.load_case(case_path)
|
|
with tempfile.TemporaryDirectory(prefix="rips") as tmpdirname:
|
|
print("Temporary folder: ", tmpdirname)
|
|
rips_instance.set_export_folder(export_type='SNAPSHOTS', path=tmpdirname)
|
|
rips_instance.project.export_snapshots()
|
|
print(os.listdir(tmpdirname))
|
|
# assert(len(os.listdir(tmpdirname)) > 0)
|
|
for fileName in os.listdir(tmpdirname):
|
|
assert(os.path.splitext(fileName)[1] == '.png')
|