|
| 1 | +/* |
| 2 | + * Copyright (C) 2022 Atlas of Living Australia |
| 3 | + * All Rights Reserved. |
| 4 | + * |
| 5 | + * The contents of this file are subject to the Mozilla Public |
| 6 | + * License Version 1.1 (the "License"); you may not use this file |
| 7 | + * except in compliance with the License. You may obtain a copy of |
| 8 | + * the License at http://www.mozilla.org/MPL/ |
| 9 | + * |
| 10 | + * Software distributed under the License is distributed on an "AS |
| 11 | + * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or |
| 12 | + * implied. See the License for the specific language governing |
| 13 | + * rights and limitations under the License. |
| 14 | + */ |
| 15 | + |
| 16 | +package au.org.ala.userdetails |
| 17 | + |
| 18 | +import au.org.ala.ws.security.JwtProperties |
| 19 | +import grails.converters.JSON |
| 20 | +import grails.testing.gorm.DataTest |
| 21 | +import grails.testing.web.controllers.ControllerUnitTest |
| 22 | + |
| 23 | +class PropertyControllerSpec extends UserDetailsSpec implements ControllerUnitTest<PropertyController>, DataTest{ |
| 24 | + |
| 25 | + def profileService = Mock(ProfileService) |
| 26 | + |
| 27 | + static doWithSpring = { |
| 28 | + jwtProperties(JwtProperties) { |
| 29 | + enabled = true |
| 30 | + fallbackToLegacyBehaviour = true |
| 31 | + } |
| 32 | + authorisedSystemService(UserDetailsSpec.Authorised) |
| 33 | + } |
| 34 | + |
| 35 | + private User user |
| 36 | + |
| 37 | + void setupSpec() { |
| 38 | + mockDomains(User, Role, UserRole, UserProperty) |
| 39 | + } |
| 40 | + |
| 41 | + void setup() { |
| 42 | + registerMarshallers() |
| 43 | + user = createUser() |
| 44 | + controller.profileService = profileService |
| 45 | + } |
| 46 | + |
| 47 | + void "Get user property"() { |
| 48 | + when: |
| 49 | + request.method = 'GET' |
| 50 | + params.alaId = Long.toString(user.id) |
| 51 | + params.name = "prop1" |
| 52 | + controller.getProperty() |
| 53 | + |
| 54 | + then: |
| 55 | + 1 * profileService.getUserProperty(user, 'prop1') >> { [ new UserProperty(user: user, name: 'prop1', value: |
| 56 | + user.userProperties.find {it.name == "prop1"}.value)] } |
| 57 | + |
| 58 | + def deserializedJson = JSON.parse(response.text) |
| 59 | + deserializedJson[0].name == 'prop1' |
| 60 | + deserializedJson[0].value == user.userProperties.find {it.name == "prop1"}.value |
| 61 | + } |
| 62 | + |
| 63 | + void "Save user property"() { |
| 64 | + when: |
| 65 | + request.method = 'POST' |
| 66 | + params.alaId = Long.toString(user.id) |
| 67 | + params.name = "city" |
| 68 | + params.value = "city" |
| 69 | + controller.saveProperty() |
| 70 | + |
| 71 | + then: |
| 72 | + 1 * profileService.saveUserProperty(user, 'city', 'city') >> { new UserProperty(user: user, name: 'city', value:'city') } |
| 73 | + |
| 74 | + def deserializedJson = JSON.parse(response.text) |
| 75 | + deserializedJson.name == 'city' |
| 76 | + deserializedJson.value == 'city' |
| 77 | + } |
| 78 | +} |
0 commit comments