X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8e60aa5c834a1a2a741a87a8155b8db9b4c46da3..cea92754dfacf2b409d1f5b45dd0775fc44c842d:/services/api/test/functional/arvados/v1/collections_controller_test.rb diff --git a/services/api/test/functional/arvados/v1/collections_controller_test.rb b/services/api/test/functional/arvados/v1/collections_controller_test.rb index afda91cc02..ba6929be64 100644 --- a/services/api/test/functional/arvados/v1/collections_controller_test.rb +++ b/services/api/test/functional/arvados/v1/collections_controller_test.rb @@ -2,6 +2,25 @@ require 'test_helper' class Arvados::V1::CollectionsControllerTest < ActionController::TestCase + # StoppedClock.now always returns the same timestamp. + # Set the Blob permission signing clock to ensure that + # all permission hints use consistent timestamps for testing. + + class StoppedClock + @@cached_timestamp = Time.now + def self.now + return @@cached_timestamp + end + end + + def setup + Blob.set_clock(StoppedClock) + end + + def teardown + Blob.set_clock(Time) + end + test "should get index" do authorize_with :active get :index @@ -177,6 +196,20 @@ EOS assert_response 422 end + test "collection UUID is normalized when created" do + authorize_with :active + post :create, { + collection: { + manifest_text: ". d41d8cd98f00b204e9800998ecf8427e 0:0:foo.txt\n", + uuid: "d30fe8ae534397864cb96c544f4cf102+47+Khint+Xhint+Zhint" + } + } + assert_response :success + assert_not_nil assigns(:object) + resp = JSON.parse(@response.body) + assert_equal "d30fe8ae534397864cb96c544f4cf102+47", resp['uuid'] + end + test "get full provenance for baz file" do authorize_with :active get :provenance, id: 'ea10d51bcf88862dbcc36eb292017dfd+45'