mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GUACAMOLE-579: Parse tokens from attributes provided by the CAS server.
This commit is contained in:
committed by
Virtually Nick
parent
82ea1d6ff5
commit
55c4144fbf
@@ -0,0 +1,103 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
package org.apache.guacamole.token;
|
||||
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
/**
|
||||
* Utility class for generating parameter token names.
|
||||
*/
|
||||
public abstract class TokenName {
|
||||
|
||||
/**
|
||||
* Pattern which matches logical groupings of words within an
|
||||
* attribute name. This pattern is intended to match logical groupings
|
||||
* regardless of the naming convention used: "CamelCase",
|
||||
* "headlessCamelCase", "lowercase_with_underscores",
|
||||
* "lowercase-with-dashes" or even "aVery-INCONSISTENTMix_ofAllStyles".
|
||||
*/
|
||||
private static final Pattern ATTRIBUTE_NAME_GROUPING = Pattern.compile(
|
||||
|
||||
// "Camel" word groups
|
||||
"\\p{javaUpperCase}\\p{javaLowerCase}+"
|
||||
|
||||
// Groups of digits
|
||||
+ "|[0-9]+"
|
||||
|
||||
// Groups of uppercase letters, excluding the uppercase letter
|
||||
// which begins a following "Camel" group
|
||||
+ "|\\p{javaUpperCase}+(?!\\p{javaLowerCase})"
|
||||
|
||||
// Groups of lowercase letters which match no other pattern
|
||||
+ "|\\p{javaLowerCase}+"
|
||||
|
||||
// Groups of word characters letters which match no other pattern
|
||||
+ "|\\b\\w+\\b"
|
||||
|
||||
);
|
||||
|
||||
/**
|
||||
* This utility class should not be instantiated.
|
||||
*/
|
||||
protected TokenName() {}
|
||||
|
||||
/**
|
||||
* Generates the name of the parameter token that should be populated with
|
||||
* the value of the given attribute. The name of the attribute will
|
||||
* automatically be transformed from "CamelCase", "headlessCamelCase",
|
||||
* "lowercase_with_underscores", and "mixes_ofBoth_Styles" to consistent
|
||||
* "UPPERCASE_WITH_UNDERSCORES". Each returned attribute will be prefixed
|
||||
* with "LDAP_".
|
||||
*
|
||||
* @param name
|
||||
* The name of the attribute to use to generate the token name.
|
||||
*
|
||||
* @param prefix
|
||||
* The prefix to prepend to the generated token name.
|
||||
*
|
||||
* @return
|
||||
* The name of the parameter token that should be populated with the
|
||||
* value of the attribute having the given name.
|
||||
*/
|
||||
public static String fromAttribute(final String name, final String prefix) {
|
||||
|
||||
// If even one logical word grouping cannot be found, default to
|
||||
// simply converting the attribute to uppercase and adding the
|
||||
// prefix
|
||||
Matcher groupMatcher = ATTRIBUTE_NAME_GROUPING.matcher(name);
|
||||
if (!groupMatcher.find())
|
||||
return prefix + name.toUpperCase();
|
||||
|
||||
// Split the given name into logical word groups, separated by
|
||||
// underscores and converted to uppercase
|
||||
StringBuilder builder = new StringBuilder(prefix);
|
||||
builder.append(groupMatcher.group(0).toUpperCase());
|
||||
|
||||
while (groupMatcher.find()) {
|
||||
builder.append("_");
|
||||
builder.append(groupMatcher.group(0).toUpperCase());
|
||||
}
|
||||
|
||||
return builder.toString();
|
||||
|
||||
}
|
||||
|
||||
}
|
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
package org.apache.guacamole.token;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
* Test which verifies automatic generation of LDAP-specific connection
|
||||
* parameter token names.
|
||||
*/
|
||||
public class TokenNameTest {
|
||||
|
||||
/**
|
||||
* Verifies that TokenName.fromAttribute() generates token names as
|
||||
* specified, regardless of the naming convention of the attribute.
|
||||
*/
|
||||
@Test
|
||||
public void testFromAttribute() {
|
||||
assertEquals("A", TokenName.fromAttribute("a", ""));
|
||||
assertEquals("B", TokenName.fromAttribute("b", ""));
|
||||
assertEquals("1", TokenName.fromAttribute("1", ""));
|
||||
assertEquals("SOME_URL", TokenName.fromAttribute("someURL", ""));
|
||||
assertEquals("LOWERCASE_WITH_DASHES", TokenName.fromAttribute("lowercase-with-dashes", ""));
|
||||
assertEquals("HEADLESS_CAMEL_CASE", TokenName.fromAttribute("headlessCamelCase", ""));
|
||||
assertEquals("CAMEL_CASE", TokenName.fromAttribute("CamelCase", ""));
|
||||
assertEquals("CAMEL_CASE", TokenName.fromAttribute("CamelCase", ""));
|
||||
assertEquals("LOWERCASE_WITH_UNDERSCORES", TokenName.fromAttribute("lowercase_with_underscores", ""));
|
||||
assertEquals("UPPERCASE_WITH_UNDERSCORES", TokenName.fromAttribute("UPPERCASE_WITH_UNDERSCORES", ""));
|
||||
assertEquals("A_VERY_INCONSISTENT_MIX_OF_ALL_STYLES", TokenName.fromAttribute("aVery-INCONSISTENTMix_ofAllStyles", ""));
|
||||
assertEquals("ABC_123_DEF_456", TokenName.fromAttribute("abc123def456", ""));
|
||||
assertEquals("ABC_123_DEF_456", TokenName.fromAttribute("ABC123DEF456", ""));
|
||||
assertEquals("WORD_A_WORD_AB_WORD_ABC_WORD", TokenName.fromAttribute("WordAWordABWordABCWord", ""));
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user