-
Notifications
You must be signed in to change notification settings - Fork 810
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makes HttpParameters case-insensitive
- Loading branch information
1 parent
649db4d
commit 162e29f
Showing
2 changed files
with
104 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
core/src/test/java/org/apache/struts2/dispatcher/HttpParametersTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* 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.struts2.dispatcher; | ||
|
||
import org.junit.Test; | ||
|
||
import java.util.HashMap; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
public class HttpParametersTest { | ||
|
||
@Test | ||
public void shouldGetBeCaseInsensitive() { | ||
// given | ||
HttpParameters params = HttpParameters.create(new HashMap<String, Object>() {{ | ||
put("param1", "value1"); | ||
}}).build(); | ||
|
||
// then | ||
assertEquals("value1", params.get("Param1").getValue()); | ||
assertEquals("value1", params.get("paraM1").getValue()); | ||
assertEquals("value1", params.get("pAraM1").getValue()); | ||
} | ||
|
||
@Test | ||
public void shouldAppendSameParamsIgnoringCase() { | ||
// given | ||
HttpParameters params = HttpParameters.create(new HashMap<String, Object>() {{ | ||
put("param1", "value1"); | ||
}}).build(); | ||
|
||
// when | ||
assertEquals("value1", params.get("param1").getValue()); | ||
|
||
params = params.appendAll(HttpParameters.create(new HashMap<String, String>() {{ | ||
put("Param1", "Value1"); | ||
}}).build()); | ||
|
||
// then | ||
assertTrue(params.contains("param1")); | ||
assertTrue(params.contains("Param1")); | ||
|
||
assertEquals("Value1", params.get("param1").getValue()); | ||
assertEquals("Value1", params.get("Param1").getValue()); | ||
} | ||
|
||
} |