/******************************************************************************* * 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.wink.test.diff; import java.io.IOException; import org.w3c.dom.Document; import org.xml.sax.SAXException; /** * Class that overrides XmlUnit DiffWithAttributeQualifier class. It is * designated to ignore fields with time values, like "updated". * <p/> * It is implemented to be used by Stm application tests for XML comparison. */ public class DiffIgnoreUpdateWithAttributeQualifier extends DiffWithAttributeQualifier { /** * Constructor of XmlUnit Diff that ignores field "updated". XQuery of * omitted field: /feed[1]/updated[1]/text()[1] * * @param controlDocument XML document that contains expected results * @param testedDocument XML document which is being tested */ public DiffIgnoreUpdateWithAttributeQualifier(Document controlDocument, Document testedDocument) { super(controlDocument, testedDocument); this.overrideDifferenceListener(new DifferenceListenerIgnoreUpdateOrCompareTimes()); } /** * Constructor of XmlUnit Diff that ignores field "updated". XQuery of * omitted field: /feed[1]/updated[1]/text()[1] * * @param controlDocument String containing XML document that contains * expected results * @param testedDocument String containing XML document which is being * tested * @throws java.io.IOException * @throws org.xml.sax.SAXException */ public DiffIgnoreUpdateWithAttributeQualifier(String controlDocument, String testedDocument) throws IOException, SAXException { super(controlDocument, testedDocument); this.overrideDifferenceListener(new DifferenceListenerIgnoreUpdateOrCompareTimes()); } }