com.jayway.restassured.internal.MapCreator.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-assured Show documentation
Show all versions of rest-assured Show documentation
Java DSL for easy testing of REST services
The newest version!
/*
* Copyright 2013 the original author or authors.
*
* Licensed 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 com.jayway.restassured.internal
import static com.jayway.restassured.internal.assertion.AssertParameter.notNull
class MapCreator {
def static Map createMapFromParams(String firstParam, Object firstValue, ... parameters) {
return createMapFromObjects(createArgumentArrayFromKeyAndValue(firstParam, firstValue, parameters));
}
def static Map createMapFromParams(String firstParam, ... parameters) {
return createMapFromObjects(createArgumentArray(firstParam, parameters));
}
def static Map createMapFromObjects(... parameters) {
if(parameters == null || parameters.length < 2) {
throw new IllegalArgumentException("You must supply at least one key and one value.");
} else if(parameters.length % 2 != 0) {
throw new IllegalArgumentException("You must supply the same number of keys as values.")
}
Map map = new LinkedHashMap();
for (int i = 0; i < parameters.length; i+=2) {
map.put(parameters[i], parameters[i+1]);
}
return map;
}
private static Object[] createArgumentArray(String firstParam, ... parameters) {
notNull firstParam, "firstParam"
if(parameters == null || parameters.length == 0) {
return [firstParam : new NoParameterValue()] as Object[]
}
def params = [firstParam, parameters[0]]
if(parameters.length > 1) {
parameters[1..-1].each {
params << it
}
}
return params as Object[]
}
private static Object[] createArgumentArrayFromKeyAndValue(String firstParam, Object firstValue, ... parameters) {
notNull firstParam, "firstParam"
notNull firstValue, "firstValue"
def params = [firstParam, firstValue]
parameters.each {
params << it
}
return params as Object[]
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy