Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/new test #79

Merged
merged 11 commits into from
Aug 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions .github/workflows/jupyter_test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This is a test pipeline, that verifies and updates the associations in cmr
name: Jupyter Test
name: Add Collection Test
# Controls when the workflow will run
on:
# Allows you to run this workflow manually from the Actions tab
Expand Down Expand Up @@ -40,9 +40,7 @@ jobs:
- name: Install dependencies
run: |
pip3 install --upgrade pip
pip3 install papermill
pip3 install xarray
pip3 install jupyter
pip3 install black
pip3 install matplotlib
pip3 install netCDF4
Expand All @@ -54,10 +52,10 @@ jobs:
run: |
cmr_association_diff -e uat -t service -a "cmr/uat_associations.txt" -p POCLOUD -n 'PODAAC Concise' -o ${{ env.UAT_OUTPUT_FILE }} --token ${{ secrets.LAUNCHPAD_TOKEN_UAT }}
cmr_association_diff -e ops -t service -a "cmr/ops_associations.txt" -p POCLOUD -n 'PODAAC Concise' -o ${{ env.OPS_OUTPUT_FILE }} --token ${{ secrets.LAUNCHPAD_TOKEN_OPS }}
- name: Run Jupyter notebooks
- name: Run Add Collection Test
run: |
python3 "notebook_test.py" -n "jupyter_notebooks/harmony_concise_api_test.ipynb" -e uat -i ${{ env.UAT_OUTPUT_FILE }} -o ${{ env.OUTPUT_DIR }}
python3 "notebook_test.py" -n "jupyter_notebooks/harmony_concise_api_test.ipynb" -e ops -i ${{ env.OPS_OUTPUT_FILE }} -o ${{ env.OUTPUT_DIR }}
python3 "add_collection_test.py" -e uat -i ${{ env.UAT_OUTPUT_FILE }} -o ${{ env.OUTPUT_DIR }}
python3 "add_collection_test.py" -e ops -i ${{ env.OPS_OUTPUT_FILE }} -o ${{ env.OUTPUT_DIR }}
- name: Check UAT files
id: check_UAT_output_files
run: |
Expand Down Expand Up @@ -90,22 +88,22 @@ jobs:
if: |
steps.check_UAT_output_files.outputs.SUCCESS_EXISTS == 'true'
run: |
echo "SLACK_REPORT_CONTENT=${{ env.SLACK_REPORT_CONTENT }}\nJupyter-test UAT result: SUCCESS\nSuccessfully ran Concise Notebook on the following collections:\n${{ steps.check_UAT_output_files.outputs.SUCCESS_CONTENT }}\n" >> $GITHUB_ENV
echo "SLACK_REPORT_CONTENT=${{ env.SLACK_REPORT_CONTENT }}\ncollection-test UAT result: SUCCESS\nSuccessfully ran Concise Notebook on the following collections:\n${{ steps.check_UAT_output_files.outputs.SUCCESS_CONTENT }}\n" >> $GITHUB_ENV
- name: Slack Report update - Add info for UAT check - FAILURE
if: |
steps.check_UAT_output_files.outputs.FAIL_EXISTS == 'true'
run: |
echo "SLACK_REPORT_CONTENT=${{ env.SLACK_REPORT_CONTENT }}\nJupyter-test UAT result: FAILURE\nFailed to run Concise Notebook on the following collections:\n${{ steps.check_UAT_output_files.outputs.FAIL_CONTENT }}\n" >> $GITHUB_ENV
echo "SLACK_REPORT_CONTENT=${{ env.SLACK_REPORT_CONTENT }}\ncollection-test UAT result: FAILURE\nFailed to run Concise Notebook on the following collections:\n${{ steps.check_UAT_output_files.outputs.FAIL_CONTENT }}\n" >> $GITHUB_ENV
- name: Slack Report update - Add info for OPS check - SUCCESS
if: |
steps.check_OPS_output_files.outputs.SUCCESS_EXISTS == 'true'
run: |
echo "SLACK_REPORT_CONTENT=${{ env.SLACK_REPORT_CONTENT }}\nJupyter-test OPS result: SUCCESS\nSuccessfully ran Concise Notebook on the following collections:\n${{ steps.check_OPS_output_files.outputs.SUCCESS_CONTENT }}\n" >> $GITHUB_ENV
echo "SLACK_REPORT_CONTENT=${{ env.SLACK_REPORT_CONTENT }}\ncollection-test OPS result: SUCCESS\nSuccessfully ran Concise Notebook on the following collections:\n${{ steps.check_OPS_output_files.outputs.SUCCESS_CONTENT }}\n" >> $GITHUB_ENV
- name: Slack Report update - Add info for OPS check - FAILURE
if: |
steps.check_OPS_output_files.outputs.FAIL_EXISTS == 'true'
run: |
echo "SLACK_REPORT_CONTENT=${{ env.SLACK_REPORT_CONTENT }}\nJupyter-test OPS result: FAILURE\nFailed to run Concise Notebook on the following collections:\n${{ steps.check_OPS_output_files.outputs.FAIL_CONTENT }}\n" >> $GITHUB_ENV
echo "SLACK_REPORT_CONTENT=${{ env.SLACK_REPORT_CONTENT }}\ncollection-test OPS result: FAILURE\nFailed to run Concise Notebook on the following collections:\n${{ steps.check_OPS_output_files.outputs.FAIL_CONTENT }}\n" >> $GITHUB_ENV
- name: Slack Report update - Add action link on Failure
if: |
steps.check_UAT_output_files.outputs.FAIL_EXISTS == 'true' ||
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Issue-68
- Updated jupyter notebook
- Update notebook test to use python code directly instead of using jupyter notebook
- Updated python libraries

### Deprecated
### Removed
### Fixed
Expand Down
237 changes: 237 additions & 0 deletions add_collection_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,237 @@
import os
import matplotlib.pyplot as plt
import netCDF4 as nc
import xarray as xr
from harmony import BBox, Client, Collection, Request, Environment
import argparse

from os import path

from utils import FileHandler
from utils.enums import Venue
import itertools


def parse_args():
"""
Parses the program arguments
Returns
-------
args
"""

parser = argparse.ArgumentParser(
description='Update CMR with latest profile',
formatter_class=argparse.ArgumentDefaultsHelpFormatter
)

parser.add_argument('-e', '--env',
help='CMR environment used to pull results from.',
required=True,
choices=["uat", "ops", "ngap_uat", "ngap_ops"],
metavar='uat or ops')

parser.add_argument('-n', '--notebook',
help='Notebook to run',
required=False,
metavar='')

parser.add_argument('-i', '--input_file',
help='File of json collections',
required=True,
metavar='')

parser.add_argument('-o', '--output_path',
help='output path for success and fails',
required=False,
metavar='')

args = parser.parse_args()
return args


def get_username_and_password(venue):
if venue == "UAT":
return os.environ.get("UAT_USERNAME"), os.environ.get("UAT_PASSWORD")
elif venue == "OPS":
return os.environ.get('OPS_USERNAME'), os.environ.get('OPS_PASSWORD')
else:
raise ValueError("Invalid venue")


def get_x_y_variables(variables):
x_var_candidates = ["lon", "longitude", "beam_clon", "sp_lon", "cellon"]
y_var_candidates = ["lat", "latitude", "beam_clat", "sp_lat", "cellat"]

x_var, y_var = None, None
for var in variables:
if x_var is None and var in x_var_candidates:
x_var = var
if y_var is None and var in y_var_candidates:
y_var = var
if x_var and y_var:
break

return x_var, y_var


def test(collection_id, venue):

max_results = 2

username, password = get_username_and_password(venue)
environment = Environment.UAT if venue == "UAT" else Environment.PROD
harmony_client = Client(auth=(username, password), env=environment)

collection = Collection(id=collection_id)

request = Request(
collection=collection,
concatenate=True,
max_results=max_results,
skip_preview=True,
format="application/x-netcdf4",
)

request.is_valid()

print(harmony_client.request_as_curl(request))

job1_id = harmony_client.submit(request)

print(f'\n{job1_id}')

print(harmony_client.status(job1_id))

print('\nWaiting for the job to finish')

results = harmony_client.result_json(job1_id)

print('\nDownloading results:')

futures = harmony_client.download_all(job1_id)
file_names = [f.result() for f in futures]
print('\nDone downloading.')

filename = file_names[0]
# Handle time dimension and variables dropping
dt = nc.Dataset(filename, 'r')
groups = list(dt.groups)
dt.close()

drop_variables = [
'time',
'sample',
'meas_ind',
'wvf_ind',
'ddm',
'averaged_l1'
]
if not groups:
groups = [None]

for group in groups:

ds = xr.open_dataset(filename, group=group, decode_times=False, drop_variables=drop_variables)

assert len(ds.coords['subset_index']) == max_results
variables = list(ds.variables)
x_var, y_var = get_x_y_variables(variables)

for v in variables:
if v not in ['subset_files', 'lat', 'lon', 'latitude', 'longitude', 'beam_clat', 'beam_clon']:
variable = v
break

if x_var is not None and y_var is not None:
break

ds.close()

if x_var is None or y_var is None:
raise Exception("Lon and Lat variables are not found")

for index in range(0, max_results):
ax = ds.isel(subset_index=index).plot.scatter(
y=y_var,
x=x_var,
hue=variable,
s=1,
levels=9,
cmap="jet",
aspect=2.5,
size=9
)
plt.xlim(0., 360.)
plt.ylim(-90., 90.)
plt.show(block=False)
plt.close(ax.figure)

ax = ds.plot.scatter(
y=y_var,
x=x_var,
hue=variable,
s=1,
levels=9,
cmap="jet",
aspect=2.5,
size=9
)
plt.xlim(0., 360.)
plt.ylim(-90., 90.)
plt.show(block=False)
plt.close(ax.figure)

ds.close()


def run():
"""
Run from command line.

Returns
-------
"""

_args = parse_args()
environment = _args.env
notebook = _args.notebook
inputFile = _args.input_file
output_location = _args.output_path if _args.output_path else '.'

success = []
fails = []

if path.exists(inputFile):
venue = Venue.from_str(environment)
collections = FileHandler.get_file_content_list_per_line(inputFile)
print(collections)
# limit number of collections tested to 1
for collection in itertools.islice(collections, 1):
if "POCLOUD" not in collection and venue == "uat":
continue

try:
print(collection)
test(collection, venue.name)
success.append(collection)
except Exception as ex:
print(ex)
fails.append(collection)

# Create output files
if output_location:
success_outfile = path.realpath(f'{output_location}/{_args.env}_success.txt')
fail_outfile = path.realpath(f'{output_location}/{_args.env}_fail.txt')

if success:
with open(success_outfile, 'w') as the_file:
the_file.writelines(x + '\n' for x in success)

if fails:
with open(fail_outfile, 'w') as the_file:
the_file.writelines(x + '\n' for x in fails)


if __name__ == '__main__':
run()
Loading