Skip to content

Commit

Permalink
Merge pull request #1549 from roger-ryao/revert-pr1221
Browse files Browse the repository at this point in the history
Revert pr-1221 since revert back to `softerr`/`soft` mode in https://…
  • Loading branch information
yangchiu committed Nov 23, 2023
2 parents 829ab99 + 7f7c4a6 commit 7e871ab
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions manager/integration/tests/test_rwx.py
Expand Up @@ -12,9 +12,9 @@
from common import wait_for_volume_creation, DATA_SIZE_IN_MB_3
from common import create_pv_for_volume, create_pvc_for_volume
from common import DEFAULT_STATEFULSET_TIMEOUT, DEFAULT_STATEFULSET_INTERVAL
from common import wait_delete_pod, wait_for_pod_remount
from common import get_core_api_client, write_pod_volume_random_data
from common import create_pvc_spec, make_deployment_with_pvc # NOQA
from common import wait_for_pod_phase
from common import core_api, statefulset, pvc, pod, client # NOQA
from common import RETRY_COUNTS, RETRY_INTERVAL
from common import EXPANDED_VOLUME_SIZE
Expand Down Expand Up @@ -344,9 +344,10 @@ def test_rwx_delete_share_manager_pod(core_api, statefulset): # NOQA
2. Wait for StatefulSet to come up healthy.
3. Write data and compute md5sum.
4. Delete the share manager pod.
5. Check the data md5sum in statefulSet.
6. Write more data to it and compute md5sum.
7. Check the data md5sum in share manager volume.
5. Wait for a new pod to be created and volume getting attached.
6. Check the data md5sum in statefulSet.
7. Write more data to it and compute md5sum.
8. Check the data md5sum in share manager volume.
"""

statefulset_name = 'statefulset-delete-share-manager-pods-test'
Expand Down Expand Up @@ -377,8 +378,10 @@ def test_rwx_delete_share_manager_pod(core_api, statefulset): # NOQA
delete_and_wait_pod(core_api, share_manager_name,
namespace=LONGHORN_NAMESPACE)

wait_for_pod_phase(core_api, share_manager_name,
namespace=LONGHORN_NAMESPACE, pod_phase="Running")
target_pod = core_api.read_namespaced_pod(name=pod_name,
namespace='default')
wait_delete_pod(core_api, target_pod.metadata.uid)
wait_for_pod_remount(core_api, pod_name)

test_data_2 = generate_random_data(VOLUME_RWTEST_SIZE)
write_pod_volume_data(core_api, pod_name, test_data_2, filename='test2')
Expand Down

0 comments on commit 7e871ab

Please sign in to comment.