https://github.com/GeoscienceAustralia/PyRate
Tip revision: acf7ae0d8819410e8e92241ca6531716471b6db3 authored by Syed Sheece Raza Gardezi on 31 October 2019, 00:02:32 UTC
Update history.rst
Update history.rst
Tip revision: acf7ae0
test_system.py
# coding: utf-8
# This Python module is part of the PyRate software package.
#
# Copyright 2017 Geoscience Australia
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
This Python module contains tests for mpi operations in PyRate.
Tun this module as 'mpirun -n 4 pytest tests/test_mpi.py'
"""
import glob
import shutil
import numpy as np
import pytest
import os
import tempfile
import random
import string
import pyrate.core.orbital
import pyrate.core.shared
import tests.common
from pyrate import (
process, prepifg, merge, conv2tif)
from tests.common import (small_data_setup, reconstruct_mst,
reconstruct_linrate, SML_TEST_DEM_HDR_GAMMA, pre_prepare_ifgs)
from tests import common
from tests.test_covariance import legacy_maxvar
from pyrate.core import algorithm, ref_phs_est as rpe, mpiops, config as cf, covariance, refpixel
from pyrate.merge import create_png_from_tif
from pyrate.__main__ import conv2tif_handler, prepifg_handler, process_handler, merge_handler
import sys
import unittest
class SystemTest(unittest.TestCase):
def setUp(self):
self.root_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
self.rows = 1
self.cols = 1
def test_roipac_workflow(self):
input_config_path = os.path.join(self.root_path, "tests", "test_data", "system", "roipac", "input_parameters.conf")
conv2tif_handler(input_config_path)
prepifg_handler(input_config_path)
process_handler(input_config_path, self.rows, self.cols)
merge_handler(input_config_path, self.rows, self.cols)
self.assertTrue(True)
def test_gamma_workflow(self):
input_config_path = os.path.join(self.root_path, "tests", "test_data", "system", "gamma", "input_parameters.conf")
conv2tif_handler(input_config_path)
prepifg_handler(input_config_path)
process_handler(input_config_path, self.rows, self.cols)
merge_handler(input_config_path, self.rows, self.cols)
self.assertTrue(True)
def test_geotiff_workflow(self):
input_config_path = os.path.join(self.root_path, "tests", "test_data", "system", "geotiff", "input_parameters.conf")
prepifg_handler(input_config_path)
process_handler(input_config_path, self.rows, self.cols)
merge_handler(input_config_path, self.rows, self.cols)
self.assertTrue(True)
if __name__ == '__main__':
unittest.main()