Common test classes used by some Last.fm projects. We have open-sourced this code to allow us to open-source additional projects that may have a dependency on this library.
Obtain lastcommons-test from Maven Central:
This project provides a TemporaryFolder or a DataFolder for use in your JUnit tests.
TemporaryFolder
gives you an empty folder for each test that lets you create folders and files during your test. JUnit nicely handles the life-cycle of this folder, creating it when necessary and removing it when your test is done.
The DataFolder
classes provide a convenient way to refer to files and folders containing test data within your project, so you can fetch data easily during a test without needing to hard code paths.
To use within your own tests, make sure you have either JUnit4 or JUnit5 in your POM. Neither are provided through lastcommons-test
.
You can download a JAR file or obtain lastcommons-test from Maven Central using the following identifier:
This project uses the Maven build system.
All contributions are welcome. Please use the Last.fm codeformatting profile found in the lastfm-oss-config
project for formatting your changes.
Use a fm.last.commons.test.file.TemporaryFolder rule to cleanly obtain a temporary folder for file writing etc. The code looks something like this:
@Rule
public TemporaryFolder temporaryFolder = new TemporaryFolder();
@Test
public void myTest() {
File logged = temporaryFolder.newFile("log.txt");
File report = temporaryFolder.newFile("2012", "03", "01", "report.tsv");
...
Data folders are now available as JUnit4 Rules and JUnit5 Extensions. Examples can be found below:
public class MyTest {
@RegisterExtension
public DataFolder dataFolder = new RootDataFolderExtension();
@Test
public void myTestMethod() throws IOException {
File actualFolder = dataFolder.getFolder();
// Path: ./src/test/data
...
And also a child folder within the root:
public class MyMp3Test {
@RegisterExtension
public DataFolder dataFolder = new RootDataFolderExtension("mp3", "128K", "clean");
@Test
public void myTestMethod() throws IOException {
File actualFolder = dataFolder.getFolder();
// Path: ./src/test/data/mp3/128k/clean
...
public class MyTest {
@Rule
public DataFolder dataFolder = new RootDataFolder();
@Test
public void myTestMethod() throws IOException {
File actualFolder = dataFolder.getFolder();
// Path: ./src/test/data
...
And also a child folder within the root:
public class MyMp3Test {
@Rule
public DataFolder dataFolder = new RootDataFolder("mp3", "128K", "clean");
@Test
public void myTestMethod() throws IOException {
File actualFolder = dataFolder.getFolder();
// Path: ./src/test/data/mp3/128k/clean
...
public class MyTest {
@RegisterExtension
public DataFolder dataFolder = new ClassDataFolderExtension();
@Test
public void myTestMethod() throws IOException {
File actualFolder = dataFolder.getFolder();
// Path: ./src/test/data/fm/last/project/MyTest
...
public class MyTest {
@Rule
public DataFolder dataFolder = new ClassDataFolder();
@Test
public void myTestMethod() throws IOException {
File actualFolder = dataFolder.getFolder();
// Path: ./src/test/data/fm/last/project/MyTest
...
public class MyTest {
@RegisterExtension
public DataFolder dataFolder = new MethodDataFolderExtension();
@Test
public void myTestMethod() throws IOException {
File actualFolder = dataFolder.getFolder();
// Path: ./src/test/data/fm/last/project/MyTest/myTestMethod
...
public class MyTest {
@Rule
public DataFolder dataFolder = new MethodDataFolder();
@Test
public void myTestMethod() throws IOException {
File actualFolder = dataFolder.getFolder();
// Path: ./src/test/data/fm/last/project/MyTest/myTestMethod
...
Note: calls to getFolder() will throw an exception if the folder doesn't exist or is not readable.
Copyright 2013-2019 Last.fm
Licensed 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.