1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
# BSD Licence
# Copyright (c) 2010, Science & Technology Facilities Council (STFC)
# All rights reserved.
#
# See the LICENSE file in the source distribution of this software for
# the full license text.
"""
Tests compatible with nosetests
"""
import os
from drslib import cmip3, cmip5
translator = cmip3.make_translator('/')
cmip5_translator = cmip5.make_translator('cmip5')
def test_1():
p = '/20c3m/atm/da/rsus/gfdl_cm2_0/run1/rsus_A2.19610101-19651231.nc'
p2 = convert(p)
assert p2 == 'cmip5/output/GFDL/CM2/20c3m/day/atmos/A2/r1/v1/rsus/rsus_A2_CM2_20c3m_r1_19610101-19651231.nc'
def test_listing():
"""
Test successful conversion of part of the CMIP3 listing
"""
fh = open(os.path.join(os.path.dirname(__file__), 'cmip3_test_ls'))
for line in fh:
yield convert, line.strip()
def convert(filepath):
print (('%s -->' % filepath),)
drs = translator.filepath_to_drs(filepath)
cmip5_filepath = cmip5_translator.drs_to_filepath(drs)
print (cmip5_filepath)
return cmip5_filepath
def test_var_underscore():
"""test_var_underscore
Regression test found in CMIP3 when a variable contains an underscore.
"""
p = '/1pctto2x/atm/mo/rlftoaa_co2/ipsl_cm4/run1/rlftoaa_co2_A5_1860-1869.nc'
p2 = convert(p)
assert p2 == 'cmip5/output/IPSL/CM4/1pctto2x/mon/atmos/A5/r1/v1/rlftoaa_co2/rlftoaa_co2_A5_CM4_1pctto2x_r1_1860-1869.nc'
|