X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/1f7a6b50cabab4c8645dd6db92e456c080f2a81c..b0a3771f2110b691882226c559eab736ab9aa34d:/services/api/test/unit/collection_test.rb diff --git a/services/api/test/unit/collection_test.rb b/services/api/test/unit/collection_test.rb index f158cfe801..d8b8365efa 100644 --- a/services/api/test/unit/collection_test.rb +++ b/services/api/test/unit/collection_test.rb @@ -214,7 +214,9 @@ class CollectionTest < ActiveSupport::TestCase new_manifest = c.signed_manifest_text new_manifest.sub!(/ \S+:bar/, '') new_manifest.sub!(/ acbd\S+/, '') - # We really deleted a block there, right? + + # Confirm that we did just remove a block from the manifest (if + # not, this test would pass without testing the relevant case): assert_operator new_manifest.length+40, :<, c.signed_manifest_text.length assert c.update_attributes(manifest_text: new_manifest) @@ -222,4 +224,33 @@ class CollectionTest < ActiveSupport::TestCase assert_not_nil c.replication_confirmed_at end end + + test "create collection with properties" do + act_as_system_user do + c = Collection.create(manifest_text: ". acbd18db4cc2f85cedef654fccc4a4d8+3 0:3:foo\n", + properties: {'property_1' => 'value_1'}) + assert c.valid? + assert_equal 'value_1', c.properties['property_1'] + end + end + + test 'create, delete, recreate collection with same name and owner' do + act_as_user users(:active) do + # create collection with name + c = Collection.create(manifest_text: '', + name: "test collection name") + assert c.valid? + uuid = c.uuid + + # mark collection as expired + c.update_attribute 'expires_at', Time.new.strftime("%Y-%m-%d") + c = Collection.where(uuid: uuid) + assert_empty c, 'Should not be able to find expired collection' + + # recreate collection with the same name + c = Collection.create(manifest_text: '', + name: "test collection name") + assert c.valid? + end + end end