X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3dc2b0008be4e09b47f73aeeb97d005cd7836619..01fbbc4a21320cb479f71ffa33c422240666a7b8:/sdk/cli/test/test_arv-tag.rb?ds=sidebyside diff --git a/sdk/cli/test/test_arv-tag.rb b/sdk/cli/test/test_arv-tag.rb index c095de5089..f4eba4651c 100644 --- a/sdk/cli/test/test_arv-tag.rb +++ b/sdk/cli/test/test_arv-tag.rb @@ -9,6 +9,8 @@ end class TestArvTag < Minitest::Test def test_no_args + skip "Waiting until #4534 is implemented" + # arv-tag exits with failure if run with no args out, err = capture_subprocess_io do assert_equal false, arv_tag @@ -19,14 +21,16 @@ class TestArvTag < Minitest::Test # Test adding and removing a single tag on a single object. def test_single_tag_single_obj + skip "TBD" + # Add a single tag. tag_uuid, err = capture_subprocess_io do - assert arv_tag 'add', 'test_tag1', '--object', 'uuid1' + assert arv_tag '--short', 'add', 'test_tag1', '--object', 'uuid1' end assert_empty err out, err = capture_subprocess_io do - assert arv '-h', 'link', 'show', '--uuid', tag_uuid.rstrip + assert arv 'link', 'show', '--uuid', tag_uuid.rstrip end assert_empty err @@ -35,7 +39,7 @@ class TestArvTag < Minitest::Test # Remove the tag. out, err = capture_subprocess_io do - assert arv_tag '-h', 'remove', 'test_tag1', '--object', 'uuid1' + assert arv_tag 'remove', 'test_tag1', '--object', 'uuid1' end assert_empty err @@ -45,7 +49,7 @@ class TestArvTag < Minitest::Test # Verify that the link no longer exists. out, err = capture_subprocess_io do - assert_equal false, arv('-h', 'link', 'show', '--uuid', links[0]['uuid']) + assert_equal false, arv('link', 'show', '--uuid', links[0]['uuid']) end assert_equal "Error: Path not found\n", err @@ -53,6 +57,8 @@ class TestArvTag < Minitest::Test # Test adding and removing a single tag with multiple objects. def test_single_tag_multi_objects + skip "TBD" + out, err = capture_subprocess_io do assert arv_tag('add', 'test_tag1', '--object', 'uuid1', @@ -62,7 +68,7 @@ class TestArvTag < Minitest::Test assert_empty err out, err = capture_subprocess_io do - assert arv '-h', 'link', 'list', '--where', '{"link_class":"tag","name":"test_tag1"}' + assert arv 'link', 'list', '--where', '{"link_class":"tag","name":"test_tag1"}' end assert_empty err