blob: 989d2497fa78d9f5982827321a9b0738433aa6f1 [file] [log] [blame]
/*******************************************************************************
* 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.olingo.odata2.client.core.uri;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import java.net.URI;
import org.apache.olingo.odata2.api.edm.Edm;
import org.apache.olingo.odata2.api.edm.EdmEntitySet;
import org.apache.olingo.odata2.api.edm.EdmException;
import org.apache.olingo.odata2.api.edm.EdmNavigationProperty;
import org.apache.olingo.odata2.api.edm.EdmProperty;
import org.apache.olingo.odata2.api.exception.ODataException;
import org.apache.olingo.odata2.client.api.ODataClient;
import org.apache.olingo.odata2.testutil.mock.MockFacade;
import org.junit.Before;
import org.junit.Test;
public class UriBuilderIntegrationTest {
protected static final String SERVICE_ROOT_URI = "http://host:80/service/";
private Edm edm;
@Before
public void getEdm() throws ODataException {
edm = MockFacade.getMockEdm();
}
@Test
public void constructEdmUri() throws EdmException {
EdmEntitySet entitySet = edm.getDefaultEntityContainer().getEntitySet("Employees");
URI uri = ODataClient.newInstance().edmUriBuilder(SERVICE_ROOT_URI).
appendEntitySetSegment(entitySet).
appendKeySegment((EdmProperty)entitySet.getEntityType().getProperty("EmployeeId"), "1").
appendNavigationSegment((EdmNavigationProperty)entitySet.getEntityType().getProperty("ne_Team")).
build();
assertNotNull(uri);
assertEquals("http://host:80/service/Employees('1')/ne_Team", uri.toASCIIString());
}
@Test
public void constructUri() {
URI uri = ODataClient.newInstance().uriBuilder(SERVICE_ROOT_URI).
appendEntitySetSegment("Employees").
appendKeySegment("1").
appendNavigationSegment("ne_Team").
build();
assertNotNull(uri);
assertEquals("http://host:80/service/Employees('1')/ne_Team", uri.toASCIIString());
}
}