From 34cc09316cd3e5d0c3e46cc6a92ee143188eba8b Mon Sep 17 00:00:00 2001 From: Daniel K Lyons <dlyons@nrao.edu> Date: Mon, 1 Feb 2021 09:50:18 -0700 Subject: [PATCH] Add an example acceptance test --- test/acceptance/execute_capability.feature | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 test/acceptance/execute_capability.feature diff --git a/test/acceptance/execute_capability.feature b/test/acceptance/execute_capability.feature new file mode 100644 index 000000000..5bf2cd62f --- /dev/null +++ b/test/acceptance/execute_capability.feature @@ -0,0 +1,25 @@ +Feature: Users can submit capability requests + + The most basic usage of the Workspaces system is for a user to submit + some kind of capability request and have something interesting happen. + + Scenario: User runs a capability + Given the system is online + When a user submits the null capability + Then the null program is executed + + Scenario: User runs the download capability + Given the system is online + When a user submits the download capability + Then files appear in the delivery area + + +Feature: Stretch goals for capability requests + + These are goals we may or may not achieve this week + + Scenario: User runs the download capability + Given the system is online + When a user submits the download capability + Then files appear in the delivery area + And The download complete notification is sent -- GitLab