awips2/cave/com.raytheon.viz.gfe/python/autotest/VTEC_EXP_NEW_TestScript.py
2022-05-05 12:34:50 -05:00

132 lines
4.9 KiB
Python

##
# This software was developed and / or modified by Raytheon Company,
# pursuant to Contract DG133W-05-CQ-1067 with the US Government.
#
# U.S. EXPORT CONTROLLED TECHNICAL DATA
# This software product contains export-restricted data whose
# export/transfer/disclosure is restricted by U.S. law. Dissemination
# to non-U.S. persons whether in the United States or abroad requires
# an export license or other authorization.
#
# Contractor Name: Raytheon Company
# Contractor Address: 6825 Pine Street, Suite 340
# Mail Stop B8
# Omaha, NE 68106
# 402.291.0100
#
# See the AWIPS II Master Rights File ("Master Rights File.pdf") for
# further licensing information.
##
# ----------------------------------------------------------------------------
# This software is in the public domain, furnished "as is", without technical
# support, and with no warranty, express or implied, as to its usefulness for
# any purpose.
#
# Headlines Timing
#
# Author:
# ----------------------------------------------------------------------------
scripts = [
{
"commentary": "Clear out all Hazards Table and Grids.",
"name": "EXPNEW_0",
"productType": None,
"clearHazardsTable": 1,
"checkStrings": [],
},
{
"commentary": "Setting initial event",
"name": "EXPNEW_1",
"drtTime": "20100101_0510",
"productType": "Hazard_WSW_Local",
"createGrids": [
("Fcst", "Hazards", "DISCRETE", -100, 100, "<None>", "all"),
("Fcst", "Hazards", "DISCRETE", 8, 24+8, "WS.W", ["FLZ050"]),
],
"checkStrings": ["URGENT - WINTER WEATHER MESSAGE",
"National Weather Service Tampa Bay Ruskin FL",
"1210 AM EST Fri Jan 1 2010",
"FLZ050-",
"/O.NEW.KTBW.WS.W.0001.100101T1300Z-100102T1300Z/",
"Pinellas-",
"1210 AM EST Fri Jan 1 2010",
"...WINTER STORM WARNING IN EFFECT FROM 8 AM THIS MORNING TO 8 AM EST SATURDAY...",
# "The National Weather Service in Tampa Bay Ruskin has issued a Winter Storm Warning, which is in effect from 8 AM this morning to 8 AM EST Saturday.",
],
},
{
"commentary": "Extending right before EXP ",
"name": "EXPNEW_2",
"drtTime": "20100102_1250",
"decodeVTEC": 0, #don't decode
"productType": "Hazard_WSW_Local",
"createGrids": [
("Fcst", "Hazards", "DISCRETE", -100, 100, "<None>", "all"),
("Fcst", "Hazards", "DISCRETE", 8, 32, "WS.W", ["FLZ050"]),
("Fcst", "Hazards", "DISCRETE", 32, 40, "WS.W", ["FLZ050"]),
],
"checkStrings": ["URGENT - WINTER WEATHER MESSAGE",
"National Weather Service Tampa Bay Ruskin FL",
"750 AM EST Sat Jan 2 2010",
"FLZ050-",
"/O.EXT.KTBW.WS.W.0001.000000T0000Z-100102T2100Z/",
"Pinellas-",
"...WINTER STORM WARNING NOW IN EFFECT UNTIL 4 PM EST THIS AFTERNOON...",
# "The Winter Storm Warning is now in effect until 4 PM EST this afternoon.",
],
},
{
"commentary": "Extending after EXP ",
"name": "EXPNEW_3",
"drtTime": "20100102_1301",
"productType": "Hazard_WSW_Local",
"createGrids": [
("Fcst", "Hazards", "DISCRETE", -100, 100, "<None>", "all"),
("Fcst", "Hazards", "DISCRETE", 8, 32, "WS.W", ["FLZ050"]),
("Fcst", "Hazards", "DISCRETE", 32, 40, "WS.W", ["FLZ050"]),
],
"checkStrings": ["URGENT - WINTER WEATHER MESSAGE",
"National Weather Service Tampa Bay Ruskin FL",
"801 AM EST Sat Jan 2 2010",
"FLZ050-",
"/O.EXP.KTBW.WS.W.0001.000000T0000Z-100102T1300Z/",
"/O.NEW.KTBW.WS.W.0002.100102T1301Z-100102T2100Z/",
"Pinellas-",
"...WINTER STORM WARNING IN EFFECT UNTIL 4 PM EST THIS AFTERNOON...",
"...WINTER STORM WARNING HAS EXPIRED...",
# "The National Weather Service in Tampa Bay Ruskin has issued a Winter Storm Warning, which is in effect until 4 PM EST this afternoon. The Winter Storm Warning is no longer in effect.",
],
},
{
"commentary": "Cleanup.",
"name": "EXPNEW_4",
"productType": None,
"clearHazardsTable": 1,
"checkStrings": [],
},
]
import TestScript
def testScript(self, dataMgr):
defaults = {
"database": "<site>_GRID__Fcst_00000000_0000",
"publishGrids": 0,
"decodeVTEC": 1,
"gridsStartTime": "20100101_0500",
"orderStrings": 1,
"vtecMode": "O",
"cmdLineVars": "{('Issued By', 'issuedBy'): None}",
"deleteGrids": [("Fcst", "Hazards", "SFC", "all", "all")],
}
return TestScript.generalTestScript(self, dataMgr, scripts, defaults)