6588: Removed manage account button, modified tests and deleted views.
[arvados.git] / apps / workbench / test / integration_performance / collection_unit_test.rb
index 991757e07104047095263baa517db585113f875b..6cf14b5182a10810b22ab7aafa60f32fa11c93be 100644 (file)
@@ -31,7 +31,7 @@ class BigCollectionTest < ActiveSupport::TestCase
     bigmanifest = time_block 'build example' do
       make_manifest(streams: 100,
                     files_per_stream: 100,
-                    blocks_per_file: 30,
+                    blocks_per_file: 20,
                     bytes_per_block: 0)
     end
     c = time_block "new (manifest size = #{bigmanifest.length>>20}MiB)" do
@@ -52,6 +52,11 @@ class BigCollectionTest < ActiveSupport::TestCase
       assert_equal c.uuid, list.first.uuid
       assert_not_nil list.first.manifest_text
     end
+    time_block 'update(name-only)' do
+      manifest_text_length = c.manifest_text.length
+      c.update_attributes name: 'renamed during test case'
+      assert_equal c.manifest_text.length, manifest_text_length
+    end
     time_block 'update' do
       c.manifest_text += ". d41d8cd98f00b204e9800998ecf8427e+0 0:0:empty.txt\n"
       c.save!