Skip to content

Commit 9779529

Browse files
authored
Merge pull request #181 from AtlasOfLivingAustralia/epic/cognito/180-admin-reset-of-password-contains-special-characters
#180 fix symbol character set used in temporary password generation
2 parents b4cee1f + f842565 commit 9779529

File tree

3 files changed

+81
-3
lines changed

3 files changed

+81
-3
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ branches:
66
only:
77
- dev
88
- master
9-
- hotfix
9+
- /^hotfix.*$/
1010
- grails3
1111
- experimental_jwt
1212
- /^feature.*$/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
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+
}

userdetails-plugin/grails-app/services/au/org/ala/userdetails/PasswordService.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515

1616
package au.org.ala.userdetails
1717

18+
import au.org.ala.auth.EnglishCustomCharacterData
1819
import au.org.ala.auth.PasswordResetFailedException
1920
import au.org.ala.users.IUser
20-
import au.org.ala.users.UserRecord
2121
import au.org.ala.auth.PasswordPolicy
2222
import au.org.ala.cas.encoding.BcryptPasswordEncoder
2323
import au.org.ala.cas.encoding.LegacyPasswordEncoder
@@ -244,7 +244,7 @@ class PasswordService {
244244
ruleGroup.rules.add(new CharacterRule(EnglishCharacterData.Digit, policy.charGroupMinDigit))
245245
}
246246
if (policy.charGroupMinSpecial > 0) {
247-
ruleGroup.rules.add(new CharacterRule(EnglishCharacterData.Special, policy.charGroupMinSpecial))
247+
ruleGroup.rules.add(new CharacterRule(EnglishCustomCharacterData.Special, policy.charGroupMinSpecial))
248248
}
249249
}
250250

0 commit comments

Comments
 (0)