X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a1adf1ed6f93ce0769f307a86b6389e9e8e630a9..a340b9c191733087722cd4203bf0b6b76f60cbec:/services/api/test/unit/container_request_test.rb?ds=sidebyside diff --git a/services/api/test/unit/container_request_test.rb b/services/api/test/unit/container_request_test.rb index 7f4206b297..701147cf65 100644 --- a/services/api/test/unit/container_request_test.rb +++ b/services/api/test/unit/container_request_test.rb @@ -237,19 +237,19 @@ class ContainerRequestTest < ActiveSupport::TestCase cr.priority = 5 cr.save! - c2 = ContainerRequest.new - c2.state = "Committed" - c2.container_image = "img" - c2.command = ["foo", "bar"] - c2.output_path = "/tmp" - c2.cwd = "/tmp" - c2.priority = 10 - c2.save! + cr2 = ContainerRequest.new + cr2.state = "Committed" + cr2.container_image = "img" + cr2.command = ["foo", "bar"] + cr2.output_path = "/tmp" + cr2.cwd = "/tmp" + cr2.priority = 10 + cr2.save! c = Container.find_by_uuid cr.container_uuid assert_equal 5, c.priority - c2 = Container.find_by_uuid c2.container_uuid + c2 = Container.find_by_uuid cr2.container_uuid assert_equal 10, c2.priority cr.priority = 0 @@ -306,18 +306,18 @@ class ContainerRequestTest < ActiveSupport::TestCase assert_equal "Committed", cr.state c = Container.find_by_uuid cr.container_uuid - assert_equal "Queued", c.state + assert_equal Container::Queued, c.state act_as_system_user do - c.state = "Running" - c.save! + c.update_attributes! state: Container::Locked + c.update_attributes! state: Container::Running end cr.reload assert_equal "Committed", cr.state act_as_system_user do - c.state = "Complete" + c.update_attributes! state: Container::Complete c.save! end @@ -340,17 +340,17 @@ class ContainerRequestTest < ActiveSupport::TestCase c = Container.find_by_uuid cr.container_uuid assert_equal 5, c.priority - c2 = ContainerRequest.new - c2.state = "Committed" - c2.container_image = "img" - c2.command = ["foo", "bar"] - c2.output_path = "/tmp" - c2.cwd = "/tmp" - c2.priority = 10 - c2.requesting_container_uuid = c.uuid - c2.save! - - c2 = Container.find_by_uuid c2.container_uuid + cr2 = ContainerRequest.new + cr2.state = "Committed" + cr2.container_image = "img" + cr2.command = ["foo", "bar"] + cr2.output_path = "/tmp" + cr2.cwd = "/tmp" + cr2.priority = 10 + cr2.requesting_container_uuid = c.uuid + cr2.save! + + c2 = Container.find_by_uuid cr2.container_uuid assert_equal 10, c2.priority act_as_system_user do @@ -361,6 +361,9 @@ class ContainerRequestTest < ActiveSupport::TestCase cr.reload assert_equal "Final", cr.state + cr2.reload + assert_equal 0, cr2.priority + c2.reload assert_equal 0, c2.priority end