com.helger.phive.api.mock.PhiveTestFile Maven / Gradle / Ivy
/*
* Copyright (C) 2014-2024 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* 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.
*/
package com.helger.phive.api.mock;
import java.util.Set;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
import com.helger.commons.ValueEnforcer;
import com.helger.commons.annotation.ReturnsMutableCopy;
import com.helger.commons.collection.impl.CommonsHashSet;
import com.helger.commons.collection.impl.ICommonsSet;
import com.helger.commons.io.resource.IReadableResource;
import com.helger.diver.api.coord.DVRCoordinate;
/**
* This class describes a simple test file: the path where it resides and the
* validation ID to be used.
*
* @author Philip Helger
*/
@Immutable
public class PhiveTestFile
{
private final IReadableResource m_aResource;
private final DVRCoordinate m_aVESID;
private final ICommonsSet m_aExpectedErrorIDs;
public PhiveTestFile (@Nonnull final IReadableResource aResource,
@Nonnull final DVRCoordinate aVESID,
@Nullable final Set aExpectedErrorIDs)
{
m_aResource = ValueEnforcer.notNull (aResource, "Resource");
m_aVESID = ValueEnforcer.notNull (aVESID, "VESID");
m_aExpectedErrorIDs = new CommonsHashSet <> (aExpectedErrorIDs);
}
/**
* @return The readable resource as passed in the constructor. Never
* null
.
*/
@Nonnull
public IReadableResource getResource ()
{
return m_aResource;
}
/**
* @return The VES ID passed in the constructor. Never null
.
*/
@Nonnull
public DVRCoordinate getVESID ()
{
return m_aVESID;
}
public boolean isGoodCase ()
{
return m_aExpectedErrorIDs.isEmpty ();
}
public boolean isBadCase ()
{
return m_aExpectedErrorIDs.isNotEmpty ();
}
@Nonnull
@ReturnsMutableCopy
public ICommonsSet getAllExpectedErrorIDs ()
{
return m_aExpectedErrorIDs.getClone ();
}
@Nonnull
public static PhiveTestFile createGoodCase (@Nonnull final IReadableResource aResource,
@Nonnull final DVRCoordinate aVESID)
{
// Good case: no error
return new PhiveTestFile (aResource, aVESID, null);
}
}