1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
7 class AuthorizedKeyTest < ActiveSupport::TestCase
8 TEST_KEY = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCf5aTI55uyWr44TckP/ELUAyPsdnf5fTZDcSDN4qiMZYAL7TYV2ixwnbPObLObM0GmHSSFLV1KqsuFICUPgkyKoHbAH6XPgmtfOLU60VkGf1v5uxQ/kXCECRCJmPb3K9dIXGEw+1DXPdOV/xG7rJNvo4a9WK9iqqZr8p+VGKM6C017b8BDLk0tuEEjZ5jXcT/ka/hTScxWkKgF6auPOVQ79OA5+0VaYm4uQLzVUdgwVUPWQQecRrtnc08XYM1htpcLDIAbWfUNK7uE6XR3/OhtrJGf05FGbtGguPgi33F9W3Q3yw6saOK5Y3TfLbskgFaEdLgzqK/QSBRk2zBF49Tj test@localhost"
10 test 'create and update key' do
13 ak = AuthorizedKey.new(name: "foo", public_key: TEST_KEY, authorized_user_uuid: u1.uuid)
14 assert ak.save, ak.errors.full_messages.to_s
16 assert ak.valid?, ak.errors.full_messages.to_s
17 assert ak.save, ak.errors.full_messages.to_s
21 test 'duplicate key not permitted' do
24 ak = AuthorizedKey.new(name: "foo", public_key: TEST_KEY, authorized_user_uuid: u1.uuid)
27 u2 = users(:spectator)
29 ak2 = AuthorizedKey.new(name: "bar", public_key: TEST_KEY, authorized_user_uuid: u2.uuid)
32 assert_match(/already exists/, ak2.errors.full_messages.to_s)
36 test 'attach key to wrong user account' do
37 act_as_user users(:active) do
38 ak = AuthorizedKey.new(name: "foo", public_key: TEST_KEY)
39 ak.authorized_user_uuid = users(:spectator).uuid
42 ak.authorized_user_uuid = users(:admin).uuid
45 ak.authorized_user_uuid = users(:active).uuid
46 assert ak.save, ak.errors.full_messages.to_s
47 ak.authorized_user_uuid = users(:admin).uuid