Skip to content
Snippets Groups Projects
Commit 95882d8e authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Added more methods to test

parent 53cc2a4d
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ import org.testng.annotations._ ...@@ -36,7 +36,7 @@ import org.testng.annotations._
* Created by wyleung on 10/22/15. * Created by wyleung on 10/22/15.
*/ */
class GearsSingleTest(val testset: String) extends TestNGSuite with Matchers { class GearsSingleTest extends TestNGSuite with Matchers {
def initPipeline(map: Map[String, Any]): GearsSingle = { def initPipeline(map: Map[String, Any]): GearsSingle = {
new GearsSingle { new GearsSingle {
override def configName = "gears" override def configName = "gears"
...@@ -50,22 +50,33 @@ class GearsSingleTest(val testset: String) extends TestNGSuite with Matchers { ...@@ -50,22 +50,33 @@ class GearsSingleTest(val testset: String) extends TestNGSuite with Matchers {
@DataProvider(name = "gearsOptions") @DataProvider(name = "gearsOptions")
def gearsOptions = { def gearsOptions = {
val startFromBam = Array(true, false) val bool = Array(true, false)
val paired = Array(true, false)
val hasOutputNames = Array(true, false)
val hasFileExtensions = Array(true, false)
for ( for (
fromBam <- startFromBam; fromBam <- bool;
pair <- paired; pair <- bool;
hasOutputName <- hasOutputNames hasOutputName <- bool;
) yield Array(testset, fromBam, pair, hasOutputName) kraken <- bool;
qiimeClosed <- bool;
qiimeRtax <- bool;
seqCount <- bool
) yield Array("", fromBam, pair, hasOutputName, kraken, qiimeClosed, qiimeRtax, seqCount)
} }
@Test(dataProvider = "gearsOptions") @Test(dataProvider = "gearsOptions")
def testGears(testset: String, fromBam: Boolean, paired: Boolean, def testGears(dummy: String,
hasOutputName: Boolean) = { fromBam: Boolean,
paired: Boolean,
hasOutputName: Boolean,
kraken: Boolean,
qiimeClosed: Boolean,
qiimeRtax: Boolean,
seqCount: Boolean) = {
val map = ConfigUtils.mergeMaps(Map( val map = ConfigUtils.mergeMaps(Map(
"gears_use_kraken" -> kraken,
"gear_use_qiime_rtax" -> qiimeRtax,
"gear_use_qiime_closed" -> qiimeClosed,
"gear_use_seq_count" -> seqCount,
"output_dir" -> GearsSingleTest.outputDir "output_dir" -> GearsSingleTest.outputDir
), Map(GearsSingleTest.executables.toSeq: _*)) ), Map(GearsSingleTest.executables.toSeq: _*))
...@@ -93,9 +104,9 @@ class GearsSingleTest(val testset: String) extends TestNGSuite with Matchers { ...@@ -93,9 +104,9 @@ class GearsSingleTest(val testset: String) extends TestNGSuite with Matchers {
gears.functions.count(_.isInstanceOf[SamtoolsView]) shouldBe (if (fromBam) 1 else 0) gears.functions.count(_.isInstanceOf[SamtoolsView]) shouldBe (if (fromBam) 1 else 0)
gears.functions.count(_.isInstanceOf[SamToFastq]) shouldBe (if (fromBam) 1 else 0) gears.functions.count(_.isInstanceOf[SamToFastq]) shouldBe (if (fromBam) 1 else 0)
gears.functions.count(_.isInstanceOf[Kraken]) shouldBe 1 gears.functions.count(_.isInstanceOf[Kraken]) shouldBe (if (kraken) 1 else 0)
gears.functions.count(_.isInstanceOf[KrakenReport]) shouldBe 1 gears.functions.count(_.isInstanceOf[KrakenReport]) shouldBe (if (kraken) 1 else 0)
gears.functions.count(_.isInstanceOf[KrakenReportToJson]) shouldBe 1 gears.functions.count(_.isInstanceOf[KrakenReportToJson]) shouldBe (if (kraken) 1 else 0)
} }
// remove temporary run directory all tests in the class have been run // remove temporary run directory all tests in the class have been run
...@@ -120,6 +131,16 @@ object GearsSingleTest { ...@@ -120,6 +131,16 @@ object GearsSingleTest {
"krakenreport" -> Map("exe" -> "test", "db" -> "test"), "krakenreport" -> Map("exe" -> "test", "db" -> "test"),
"sambamba" -> Map("exe" -> "test"), "sambamba" -> Map("exe" -> "test"),
"samtools" -> Map("exe" -> "test"), "samtools" -> Map("exe" -> "test"),
"md5sum" -> Map("exe" -> "test") "md5sum" -> Map("exe" -> "test"),
"assigntaxonomy" -> Map("exe" -> "test"),
"pickclosedreferenceotus" -> Map("exe" -> "test"),
"pickotus" -> Map("exe" -> "test"),
"pickrepset" -> Map("exe" -> "test"),
"splitlibrariesfastq" -> Map("exe" -> "test"),
"flash" -> Map("exe" -> "test"),
"fastqc" -> Map("exe" -> "test"),
"seqtk" -> Map("exe" -> "test"),
"sickle" -> Map("exe" -> "test"),
"cutadapt" -> Map("exe" -> "test")
) )
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment