Skip to content
Snippets Groups Projects
Commit 247f09c8 authored by shota niioka's avatar shota niioka Committed by Yas Naoi
Browse files

Issue #3292771 by shota niioka, yas, kumikoono: Add a BDD test suite for K8s Pods (Read)

parent 0e5f4f11
No related branches found
No related tags found
No related merge requests found
...@@ -27,6 +27,19 @@ Feature: Create and delete a pod for K8s as "Authenticated User" ...@@ -27,6 +27,19 @@ Feature: Create and delete a pod for K8s as "Authenticated User"
And I should see neither error nor warning messages And I should see neither error nor warning messages
And I should see "{{ pod_name }}" in the "{{ namespace }}" row And I should see "{{ pod_name }}" in the "{{ namespace }}" row
@api @javascript
Scenario: Read the Pod
Given I am logged in as user "{{ user_name }}"
When I visit "/clouds/k8s/{{ cloud_context }}/pod"
And I click "Refresh"
And I wait {{ wait }} milliseconds
And I should see the link "{{ pod_name }}"
And I click "{{ pod_name }}"
Then the url should match "clouds/k8s/{{ cloud_context }}/pod/"
And I should see "{{ pod_name }}"
And I should see "{{ namespace }}"
And I should see neither error nor warning messages
@api @javascript @api @javascript
Scenario: Delete the pod Scenario: Delete the pod
Given I am logged in as user "{{ user_name }}" Given I am logged in as user "{{ user_name }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment