~slub.team/goobi-indexserver/3.x

« back to all changes in this revision

Viewing changes to solr/test-framework/src/java/org/apache/solr/util/DOMUtilTestBase.java

  • Committer: Sebastian Meyer
  • Date: 2012-08-03 09:12:40 UTC
  • Revision ID: sebastian.meyer@slub-dresden.de-20120803091240-x6861b0vabq1xror
Remove Lucene and Solr source code and add patches instead
Fix Bug #985487: Auto-suggestion for the search interface

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * Licensed to the Apache Software Foundation (ASF) under one or more
3
 
 * contributor license agreements.  See the NOTICE file distributed with
4
 
 * this work for additional information regarding copyright ownership.
5
 
 * The ASF licenses this file to You under the Apache License, Version 2.0
6
 
 * (the "License"); you may not use this file except in compliance with
7
 
 * the License.  You may obtain a copy of the License at
8
 
 *
9
 
 *     http://www.apache.org/licenses/LICENSE-2.0
10
 
 *
11
 
 * Unless required by applicable law or agreed to in writing, software
12
 
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 
 * See the License for the specific language governing permissions and
15
 
 * limitations under the License.
16
 
 */
17
 
 
18
 
package org.apache.solr.util;
19
 
 
20
 
 
21
 
import java.io.StringReader;
22
 
import javax.xml.parsers.DocumentBuilder;
23
 
import javax.xml.parsers.DocumentBuilderFactory;
24
 
import javax.xml.xpath.XPath;
25
 
import javax.xml.xpath.XPathConstants;
26
 
import javax.xml.xpath.XPathFactory;
27
 
 
28
 
import org.apache.lucene.util.LuceneTestCase;
29
 
import org.w3c.dom.Document;
30
 
import org.w3c.dom.Node;
31
 
import org.xml.sax.InputSource;
32
 
 
33
 
public abstract class DOMUtilTestBase extends LuceneTestCase {
34
 
  
35
 
  private DocumentBuilder builder;
36
 
  private static final XPathFactory xpathFactory = XPathFactory.newInstance();
37
 
  
38
 
  @Override
39
 
  public void setUp() throws Exception {
40
 
    super.setUp();
41
 
    builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
42
 
  }
43
 
 
44
 
  public Node getNode( String xml, String path ) throws Exception {
45
 
    return getNode( getDocument(xml), path );
46
 
  }
47
 
  
48
 
  public Node getNode( Document doc, String path ) throws Exception {
49
 
    XPath xpath = xpathFactory.newXPath();
50
 
    return (Node)xpath.evaluate(path, doc, XPathConstants.NODE);
51
 
  }
52
 
  
53
 
  public Document getDocument( String xml ) throws Exception {
54
 
    return builder.parse(new InputSource(new StringReader(xml)));
55
 
  }
56
 
}