blob: 0082d1efdeb68f2a63789165f8079f0b9dc32e24 [file] [log] [blame]
/**
*
*/
package org.apache.taverna.scufl2.validation.correctness;
/*
*
* 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.
*
*/
import static org.junit.Assert.*;
import java.util.Collections;
import java.util.Set;
import org.apache.taverna.scufl2.validation.correctness.CorrectnessValidator;
import org.apache.taverna.scufl2.validation.correctness.ReportCorrectnessValidationListener;
import org.apache.taverna.scufl2.validation.correctness.report.NullFieldProblem;
import org.junit.Test;
/**
* @author alanrw
*
*/
public class TestNamed {
@Test
public void testValidName() {
DummyWorkflow w = new DummyWorkflow();
w.setName("fred");
CorrectnessValidator cv = new CorrectnessValidator();
ReportCorrectnessValidationListener rcvl = new ReportCorrectnessValidationListener();
cv.checkCorrectness(w, true, rcvl);
Set<NullFieldProblem> nullFieldProblems = rcvl.getNullFieldProblems();
assertFalse(nullFieldProblems.isEmpty());
}
@Test
public void testCorrectnessOfInvalidName() {
DummyWorkflow w = new DummyWorkflow();
w.setName("");
CorrectnessValidator cv = new CorrectnessValidator();
ReportCorrectnessValidationListener rcvl = new ReportCorrectnessValidationListener();
cv.checkCorrectness(w, false, rcvl);
Set<NullFieldProblem> nullFieldProblems = rcvl.getNullFieldProblems();
assertEquals(Collections.EMPTY_SET, nullFieldProblems);
}
@Test
public void testCorrectnessOfMissingName() {
DummyWorkflow w = new DummyWorkflow();
w.setName(null);
CorrectnessValidator cv = new CorrectnessValidator();
ReportCorrectnessValidationListener rcvl = new ReportCorrectnessValidationListener();
cv.checkCorrectness(w, false, rcvl);
Set<NullFieldProblem> nullFieldProblems = rcvl.getNullFieldProblems();
assertEquals(Collections.EMPTY_SET, nullFieldProblems);
}
@Test
public void testCompletenessOfInvalidName() {
DummyWorkflow w = new DummyWorkflow();
w.setName("");
CorrectnessValidator cv = new CorrectnessValidator();
ReportCorrectnessValidationListener rcvl = new ReportCorrectnessValidationListener();
cv.checkCorrectness(w, true, rcvl);
Set<NullFieldProblem> nullFieldProblems = rcvl.getNullFieldProblems();
assertFalse(nullFieldProblems.isEmpty());
Set<NullFieldProblem> problems = rcvl.getNullFieldProblems();
assertFalse(problems.isEmpty());
boolean problemDetected = false;
for (NullFieldProblem problem : problems) {
if (problem.getBean().equals(w) && problem.getFieldName().equals("name")) {
problemDetected = true;
}
}
assertTrue(problemDetected);
}
@Test
public void testCompletenessOfMissingName() {
DummyWorkflow w = new DummyWorkflow();
w.setName(null);
CorrectnessValidator cv = new CorrectnessValidator();
ReportCorrectnessValidationListener rcvl = new ReportCorrectnessValidationListener();
cv.checkCorrectness(w, true, rcvl);
Set<NullFieldProblem> nullFieldProblems = rcvl.getNullFieldProblems();
assertFalse(nullFieldProblems.isEmpty());
Set<NullFieldProblem> problems = rcvl.getNullFieldProblems();
assertFalse(problems.isEmpty());
boolean problemDetected = false;
for (NullFieldProblem problem : problems) {
if (problem.getBean().equals(w) && problem.getFieldName().equals("name")) {
problemDetected = true;
}
}
assertTrue(problemDetected);
}
}