Mip Convert Functional Tests

Warning

This documentation is currently under construction and may not be up to date.

  1. Create a test class (pattern: test_) in mip_convert.tests.test_functional..

  2. Import the functional tests class for MIP convert tests

    from mip_convert.tests.test_functional.test_command_line import AbstractFunctionalTests
    
  3. Extends your test class from the AbstractFuntionalTests

  4. Implement the get_test_data function:

    1. The function should return the test data as an TestData object (e.g. Cmip6TestData or AriseTestData)
    2. The available TestData objects are in mip_convert.tests.test_functional.utils.configurations
    3. Specify the necessary individual values of the TestData object (like mip_table, variable, specific_info, etc.)
    4. For examples, see tests in mip_covert/tests/test_functional
  5. Implement your test method that runs check_convert. This function will trigger MIP convert with your given test data.

  6. Mark your test as a slow test by add following annotation to your test method

    @attr('slow')
    

Note

For debugging a MIP convert functional test, remove the slow annotation of the test. Afterwards you can run the test as usual in your IDE.