X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3737e05681b6cfb22ea0af0da08598e458da16f0..248c7167e95d970b770c43102ee68cf1319973f7:/apps/workbench/test/controllers/projects_controller_test.rb diff --git a/apps/workbench/test/controllers/projects_controller_test.rb b/apps/workbench/test/controllers/projects_controller_test.rb index 61c882d9f9..21b3361c16 100644 --- a/apps/workbench/test/controllers/projects_controller_test.rb +++ b/apps/workbench/test/controllers/projects_controller_test.rb @@ -32,7 +32,7 @@ class ProjectsControllerTest < ActionController::TestCase id: readonly_project_uuid }, session_for(which_user) buttons = css_select('[data-method=post]').select do |el| - el.attributes['data-remote-href'].match /project.*owner_uuid.*#{readonly_project_uuid}/ + el.attributes['data-remote-href'].value.match /project.*owner_uuid.*#{readonly_project_uuid}/ end if should_show assert_not_empty(buttons, "did not offer to create a subproject") @@ -335,10 +335,38 @@ class ProjectsControllerTest < ActionController::TestCase project = api_fixture('groups')['aproject'] use_token :active found = Group.find(project['uuid']) - found.description = 'Textile description with link to home page take me home.' + found.description = 'Textile description with link to home page take me home.' found.save! get(:show, {id: project['uuid']}, session_for(:active)) - assert_includes @response.body, 'Textile description with link to home page take me home.' + assert_includes @response.body, 'Textile description with link to home page take me home.' + end + + test "find a project and edit description to unsafe html description" do + project = api_fixture('groups')['aproject'] + use_token :active + found = Group.find(project['uuid']) + found.description = 'Textile description with unsafe script tag .' + found.save! + get(:show, {id: project['uuid']}, session_for(:active)) + assert_includes @response.body, 'Textile description with unsafe script tag alert("Hello there").' + end + + # Tests #14519 + test "textile table on description renders as table html markup" do + use_token :active + project = api_fixture('groups')['aproject'] + textile_table = <First Header' + assert_includes @response.body, 'Content Cell' end test "find a project and edit description to textile description with link to object" do