-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CALCITE-6676] DiffRepository does not update log (_actual) file when…
… 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
1 parent
50d1a26
commit caacc9f
Showing
3 changed files
with
78 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
testkit/src/test/java/org/apache/calcite/test/DiffRepositoryTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)); | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
testkit/src/test/resources/org/apache/calcite/test/DiffRepositoryTest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |