added tests for Model

Former-commit-id: c02ad169f661616b9ab51779bb0fad6642cf30b7
This commit is contained in:
Jeremy Long
2015-05-03 07:21:41 -04:00
parent 56fd3f2566
commit 2b600290ae

View File

@@ -0,0 +1,286 @@
/*
* Copyright 2015 OWASP.
*
* 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 org.owasp.dependencycheck.xml.pom;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;
/**
*
* @author jeremy
*/
public class ModelTest {
/**
* Test of getName method, of class Model.
*/
@Test
public void testGetName() {
Model instance = new Model();
instance.setName("");
String expResult = "";
String result = instance.getName();
assertEquals(expResult, result);
}
/**
* Test of setName method, of class Model.
*/
@Test
public void testSetName() {
String name = "";
Model instance = new Model();
instance.setName(name);
}
/**
* Test of getOrganization method, of class Model.
*/
@Test
public void testGetOrganization() {
Model instance = new Model();
instance.setOrganization("");
String expResult = "";
String result = instance.getOrganization();
assertEquals(expResult, result);
}
/**
* Test of setOrganization method, of class Model.
*/
@Test
public void testSetOrganization() {
String organization = "";
Model instance = new Model();
instance.setOrganization(organization);
}
/**
* Test of getDescription method, of class Model.
*/
@Test
public void testGetDescription() {
Model instance = new Model();
instance.setDescription("");
String expResult = "";
String result = instance.getDescription();
assertEquals(expResult, result);
}
/**
* Test of setDescription method, of class Model.
*/
@Test
public void testSetDescription() {
String description = "";
Model instance = new Model();
instance.setDescription(description);
}
/**
* Test of getGroupId method, of class Model.
*/
@Test
public void testGetGroupId() {
Model instance = new Model();
instance.setGroupId("");
String expResult = "";
String result = instance.getGroupId();
assertEquals(expResult, result);
}
/**
* Test of setGroupId method, of class Model.
*/
@Test
public void testSetGroupId() {
String groupId = "";
Model instance = new Model();
instance.setGroupId(groupId);
}
/**
* Test of getArtifactId method, of class Model.
*/
@Test
public void testGetArtifactId() {
Model instance = new Model();
instance.setArtifactId("");
String expResult = "";
String result = instance.getArtifactId();
assertEquals(expResult, result);
}
/**
* Test of setArtifactId method, of class Model.
*/
@Test
public void testSetArtifactId() {
String artifactId = "";
Model instance = new Model();
instance.setArtifactId(artifactId);
}
/**
* Test of getVersion method, of class Model.
*/
@Test
public void testGetVersion() {
Model instance = new Model();
instance.setVersion("");
String expResult = "";
String result = instance.getVersion();
assertEquals(expResult, result);
}
/**
* Test of setVersion method, of class Model.
*/
@Test
public void testSetVersion() {
String version = "";
Model instance = new Model();
instance.setVersion(version);
}
/**
* Test of getParentGroupId method, of class Model.
*/
@Test
public void testGetParentGroupId() {
Model instance = new Model();
instance.setParentGroupId("");
String expResult = "";
String result = instance.getParentGroupId();
assertEquals(expResult, result);
}
/**
* Test of setParentGroupId method, of class Model.
*/
@Test
public void testSetParentGroupId() {
String parentGroupId = "";
Model instance = new Model();
instance.setParentGroupId(parentGroupId);
}
/**
* Test of getParentArtifactId method, of class Model.
*/
@Test
public void testGetParentArtifactId() {
Model instance = new Model();
instance.setParentArtifactId("");
String expResult = "";
String result = instance.getParentArtifactId();
assertEquals(expResult, result);
}
/**
* Test of setParentArtifactId method, of class Model.
*/
@Test
public void testSetParentArtifactId() {
String parentArtifactId = "";
Model instance = new Model();
instance.setParentArtifactId(parentArtifactId);
}
/**
* Test of getParentVersion method, of class Model.
*/
@Test
public void testGetParentVersion() {
Model instance = new Model();
instance.setParentVersion("");
String expResult = "";
String result = instance.getParentVersion();
assertEquals(expResult, result);
}
/**
* Test of setParentVersion method, of class Model.
*/
@Test
public void testSetParentVersion() {
String parentVersion = "";
Model instance = new Model();
instance.setParentVersion(parentVersion);
}
/**
* Test of getLicenses method, of class Model.
*/
@Test
public void testGetLicenses() {
Model instance = new Model();
instance.addLicense(new License("name", "url"));
List<License> expResult = new ArrayList<License>();
expResult.add(new License("name", "url"));
List<License> result = instance.getLicenses();
assertEquals(expResult, result);
}
/**
* Test of addLicense method, of class Model.
*/
@Test
public void testAddLicense() {
License license = new License("name", "url");
Model instance = new Model();
instance.addLicense(license);
}
/**
* Test of processProperties method, of class Model.
*/
@Test
public void testProcessProperties() {
Properties prop = new Properties();
prop.setProperty("key", "value");
prop.setProperty("nested", "nested ${key}");
String text = "This is a test of '${key}' '${nested}'";
Model instance = new Model();
instance.setName(text);
instance.processProperties(prop);
String expResults = "This is a test of 'value' 'nested value'";
assertEquals(expResults, instance.getName());
}
/**
* Test of interpolateString method, of class Model.
*/
@Test
public void testInterpolateString() {
Properties prop = new Properties();
prop.setProperty("key", "value");
prop.setProperty("nested", "nested ${key}");
String text = "This is a test of '${key}' '${nested}'";
String expResults = "This is a test of 'value' 'nested value'";
String results = Model.interpolateString(text, prop);
assertEquals(expResults, results);
}
}