Package org.apache.olingo.odata2.annotation.processor.ref

Source Code of org.apache.olingo.odata2.annotation.processor.ref.AbstractRefXmlTest

/*******************************************************************************
* 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.annotation.processor.ref;

import static org.custommonkey.xmlunit.XMLAssert.assertXpathExists;

import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;

import org.apache.http.HttpResponse;
import org.apache.olingo.odata2.api.commons.HttpStatusCodes;
import org.apache.olingo.odata2.api.edm.Edm;
import org.apache.olingo.odata2.testutil.server.ServletType;
import org.custommonkey.xmlunit.SimpleNamespaceContext;
import org.custommonkey.xmlunit.XMLUnit;
import org.custommonkey.xmlunit.exceptions.XpathException;
import org.junit.Before;
import org.junit.Ignore;
import org.xml.sax.SAXException;

/**
* Abstract base class for tests employing the reference scenario reading or writing XML.
*
*/
@Ignore("no test methods")
public class AbstractRefXmlTest extends AbstractRefTest {
  public AbstractRefXmlTest(final ServletType servletType) {
    super(servletType);
  }

  @Before
  public void setXmlNamespacePrefixes() {
    Map<String, String> prefixMap = new HashMap<String, String>();
    prefixMap.put(Edm.PREFIX_ATOM, Edm.NAMESPACE_ATOM_2005);
    prefixMap.put(Edm.PREFIX_APP, Edm.NAMESPACE_APP_2007);
    prefixMap.put(Edm.PREFIX_D, Edm.NAMESPACE_D_2007_08);
    prefixMap.put(Edm.PREFIX_M, Edm.NAMESPACE_M_2007_08);
    prefixMap.put(Edm.PREFIX_EDM, Edm.NAMESPACE_EDM_2008_09);
    prefixMap.put(Edm.PREFIX_EDMX, Edm.NAMESPACE_EDMX_2007_06);
    prefixMap.put(Edm.PREFIX_XML, Edm.NAMESPACE_XML_1998);
    XMLUnit.setXpathNamespaceContext(new SimpleNamespaceContext(prefixMap));
  }

  @Override
  protected void badRequest(final String uri) throws Exception {
    final HttpResponse response = callUri(uri, HttpStatusCodes.BAD_REQUEST);
    validateXmlError(getBody(response));
  }

  @Override
  protected void notFound(final String uri) throws Exception {
    final HttpResponse response = callUri(uri, HttpStatusCodes.NOT_FOUND);
    validateXmlError(getBody(response));
  }

  protected void validateXmlError(final String xml) throws XpathException, IOException, SAXException {
    assertXpathExists("/m:error", xml);
    assertXpathExists("/m:error/m:code", xml);
    assertXpathExists("/m:error/m:message[@xml:lang=\"en\"]", xml);
  }

  protected String readFile(final String filename) throws IOException {
    InputStream in = Thread.currentThread().getContextClassLoader().getResourceAsStream(filename);
    if (in == null) {
      throw new IOException("Requested file '" + filename + "' was not found.");
    }

    byte[] tmp = new byte[8192];
    int count = in.read(tmp);
    StringBuffer b = new StringBuffer();
    while (count >= 0) {
      b.append(new String(tmp, 0, count));
      count = in.read(tmp);
    }

    return b.toString();
  }
}
TOP

Related Classes of org.apache.olingo.odata2.annotation.processor.ref.AbstractRefXmlTest

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.