Package com.eviware.soapui.impl.rest.panels.request

Source Code of com.eviware.soapui.impl.rest.panels.request.ParametersFieldTest

/*
* Copyright 2004-2014 SmartBear Software
*
* Licensed under the EUPL, Version 1.1 or - as soon as they will be approved by the European Commission - subsequent
* versions of the EUPL (the "Licence");
* You may not use this work except in compliance with the Licence.
* You may obtain a copy of the Licence at:
*
* http://ec.europa.eu/idabc/eupl
*
* Unless required by applicable law or agreed to in writing, software distributed under the Licence is
* distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the Licence for the specific language governing permissions and limitations
* under the Licence.
*/
package com.eviware.soapui.impl.rest.panels.request;

import com.eviware.soapui.impl.rest.RestRequest;
import com.eviware.soapui.impl.rest.support.RestParamProperty;
import com.eviware.soapui.impl.rest.support.RestParamsPropertyHolder;
import com.eviware.soapui.utils.ModelItemFactory;
import org.junit.Before;
import org.junit.Test;

import static com.eviware.soapui.utils.CommonMatchers.endsWith;
import static com.eviware.soapui.utils.CommonMatchers.startsWith;
import static org.junit.Assert.assertThat;

/**
* Unit tests for the ParameterField class
*/
public class ParametersFieldTest {
    private static final String MATRIX_PARAM_NAME = "TheMatrix";
    private static final String MATRIX_PARAM_VALUE = "Blue_pill";
    private static final String QUERY_PARAM_NAME = "query";
    private static final String QUERY_PARAM_VALUE = "whopper";
    private ParametersField parametersField;

    @Before
    public void setUp() throws Exception {
        RestRequest request = ModelItemFactory.makeRestRequest();
        RestParamProperty matrixParam = request.getParams().addProperty(MATRIX_PARAM_NAME);
        matrixParam.setStyle(RestParamsPropertyHolder.ParameterStyle.MATRIX);
        matrixParam.setValue(MATRIX_PARAM_VALUE);
        RestParamProperty queryParam = request.getParams().addProperty(QUERY_PARAM_NAME);
        queryParam.setStyle(RestParamsPropertyHolder.ParameterStyle.QUERY);
        queryParam.setValue(QUERY_PARAM_VALUE);

        parametersField = new ParametersField(request);
    }

    @Test
    public void displaysQueryParameter() throws Exception {
        assertThat(parametersField.getText(), endsWith("?" + QUERY_PARAM_NAME + "=" + QUERY_PARAM_VALUE));
    }

    @Test
    public void displaysMatrixParameter() throws Exception {
        assertThat(parametersField.getText(), startsWith(";" + MATRIX_PARAM_NAME + "=" + MATRIX_PARAM_VALUE));
    }

}
TOP

Related Classes of com.eviware.soapui.impl.rest.panels.request.ParametersFieldTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.