Skip to content

Commit

Permalink
[CALCITE-6676] DiffRepository does not update log (_actual) file when…
Browse files Browse the repository at this point in the history
… assertion fails

Use JUnit instead of Hamcrest assert methods since the latter are not using/throwing the `AssertionFailedError` so we never enter the catch block that updates the log file.
  • Loading branch information
zabetak authored and mihaibudiu committed Nov 8, 2024
1 parent 50d1a26 commit caacc9f
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import com.google.common.collect.ImmutableSortedSet;

import org.checkerframework.checker.nullness.qual.Nullable;
import org.junit.jupiter.api.Assertions;
import org.opentest4j.AssertionFailedError;
import org.w3c.dom.CDATASection;
import org.w3c.dom.Comment;
Expand Down Expand Up @@ -57,9 +58,6 @@
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;

import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;

import static java.util.Objects.requireNonNull;

/**
Expand Down Expand Up @@ -268,6 +266,10 @@ public void checkActualAndReferenceFiles() {
}
}

String logFilePath() {
return logFile.getAbsolutePath();
}

private static URL findFile(Class<?> clazz, final String suffix) {
// The reference file for class "com.foo.Bar" is "com/foo/Bar.xml"
String rest = "/" + clazz.getName().replace('.', File.separatorChar)
Expand Down Expand Up @@ -503,7 +505,7 @@ public void assertEquals(String tag, String expected, String actual) {
expected2.replace(Util.LINE_SEPARATOR, "\n");
String actualCanonical =
actual.replace(Util.LINE_SEPARATOR, "\n");
assertThat(tag, actualCanonical, is(expected2Canonical));
Assertions.assertEquals(expected2Canonical, actualCanonical, tag);
} catch (AssertionFailedError e) {
amend(expected, actual);
throw e;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/*
* 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.calcite.test;

import org.junit.jupiter.api.Test;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;

import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;

/**
* Tests for {@link DiffRepository} class.
*/
public class DiffRepositoryTest {

@Test void testAssertEqualsUpdatesLogFileUponFailure() throws IOException {
DiffRepository r = DiffRepository.lookup(DiffRepositoryTest.class);
final String actual = "Random sentence not present in resources file";
boolean assertPassed = false;
try {
r.assertEquals("content", "${content}", actual);
assertPassed = true;
} catch (AssertionError e) {
String logContent = String.join("", Files.readAllLines(Paths.get(r.logFilePath())));
assertThat(logContent, containsString(actual));
}
assertThat("First assertion must always fail", assertPassed, is(false));
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version="1.0" ?>
<!--
~ 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.
-->
<Root>
<TestCase name="testAssertEqualsUpdatesLogFileUponFailure">
<Resource name="content">
<![CDATA[Some test content should always make assertEquals to fail
]]>
</Resource>
</TestCase>
</Root>

0 comments on commit caacc9f

Please sign in to comment.