Search in sources :

Example 1 with ProjectAnalyzer

use of org.evosuite.continuous.project.ProjectAnalyzer in project evosuite by EvoSuite.

the class JobSchedulerTest method testNonExceedingBudget.

@Test
public void testNonExceedingBudget() {
    String[] cuts = new String[] { NoBranches.class.getName(), Trivial.class.getName(), MoreBranches.class.getName() };
    ProjectAnalyzer analyzer = new ProjectAnalyzer(cuts);
    ProjectStaticData data = analyzer.analyze();
    int cores = 2;
    int memory = 1400;
    int budget = 10;
    CtgConfiguration conf = new CtgConfiguration(memory, cores, budget, 1, false, AvailableSchedule.BUDGET);
    JobScheduler scheduler = new JobScheduler(data, conf);
    List<JobDefinition> jobs = scheduler.createNewSchedule();
    Assert.assertNotNull(jobs);
    Assert.assertEquals(3, jobs.size());
    for (JobDefinition job : jobs) {
        Assert.assertEquals(700, job.memoryInMB);
    }
    Assert.assertEquals(MoreBranches.class.getName(), jobs.get(0).cut);
    Assert.assertEquals(Trivial.class.getName(), jobs.get(1).cut);
    Assert.assertEquals(NoBranches.class.getName(), jobs.get(2).cut);
    long dif01 = jobs.get(0).seconds - jobs.get(1).seconds;
    long dif12 = jobs.get(1).seconds - jobs.get(2).seconds;
    Assert.assertTrue("" + dif01, dif01 > 0);
    Assert.assertTrue("" + dif12, dif12 > 0);
    int sum = jobs.get(0).seconds + jobs.get(1).seconds + jobs.get(2).seconds;
    Assert.assertTrue("wrong value " + sum, sum <= (cores * budget * 60));
    for (JobDefinition job : jobs) {
        Assert.assertTrue("wrong " + job.seconds, job.seconds <= budget * 60);
    }
}
Also used : MoreBranches(com.examples.with.different.packagename.continuous.MoreBranches) CtgConfiguration(org.evosuite.continuous.CtgConfiguration) ProjectStaticData(org.evosuite.continuous.project.ProjectStaticData) NoBranches(com.examples.with.different.packagename.continuous.NoBranches) UsingSimpleAndTrivial(com.examples.with.different.packagename.continuous.UsingSimpleAndTrivial) Trivial(com.examples.with.different.packagename.continuous.Trivial) ProjectAnalyzer(org.evosuite.continuous.project.ProjectAnalyzer) Test(org.junit.Test)

Example 2 with ProjectAnalyzer

use of org.evosuite.continuous.project.ProjectAnalyzer in project evosuite by EvoSuite.

the class JobSchedulerTest method testSeedingAndBudget.

@Test
public void testSeedingAndBudget() {
    String[] cuts = new String[] { Trivial.class.getName(), UsingSimpleAndTrivial.class.getName(), Simple.class.getName() };
    ProjectAnalyzer analyzer = new ProjectAnalyzer(cuts);
    ProjectStaticData data = analyzer.analyze();
    int cores = 2;
    int memory = 1800;
    int budget = 3;
    CtgConfiguration conf = new CtgConfiguration(memory, cores, budget, 1, false, AvailableSchedule.BUDGET_AND_SEEDING);
    JobScheduler scheduler = new JobScheduler(data, conf);
    List<JobDefinition> jobs = scheduler.createNewSchedule();
    Assert.assertNotNull(jobs);
    Assert.assertEquals("Wrong number of jobs: " + jobs.toString(), 3, jobs.size());
    // UsingSimpleAndTrivial should be the last in the schedule, as it depends on the other 2
    JobDefinition seeding = jobs.get(2);
    Assert.assertNotNull(seeding);
    Assert.assertEquals(UsingSimpleAndTrivial.class.getName(), seeding.cut);
    Set<String> in = seeding.inputClasses;
    Assert.assertNotNull(in);
    System.out.println(in.toString());
    Assert.assertTrue(in.contains(Simple.class.getName()));
    Assert.assertTrue(in.contains(Trivial.class.getName()));
    Assert.assertEquals(2, in.size());
    // should be the first, as it has the highest number of branches among the jobs with no depencencies
    JobDefinition simple = jobs.get(0);
    Assert.assertNotNull(simple);
    Assert.assertEquals(Simple.class.getName(), simple.cut);
    int simpleTime = jobs.get(0).seconds;
    int trivialTime = jobs.get(1).seconds;
    int seedingTime = jobs.get(2).seconds;
    System.out.println("Ordered times: " + simpleTime + ", " + trivialTime + ", " + seedingTime);
    Assert.assertTrue(simpleTime > trivialTime);
    // seeding, even if last, it should have more time, as it has most branches
    Assert.assertTrue(simpleTime < seedingTime);
    Assert.assertTrue(trivialTime < seedingTime);
}
Also used : CtgConfiguration(org.evosuite.continuous.CtgConfiguration) UsingSimpleAndTrivial(com.examples.with.different.packagename.continuous.UsingSimpleAndTrivial) ProjectAnalyzer(org.evosuite.continuous.project.ProjectAnalyzer) ProjectStaticData(org.evosuite.continuous.project.ProjectStaticData) Simple(com.examples.with.different.packagename.continuous.Simple) Test(org.junit.Test)

Example 3 with ProjectAnalyzer

use of org.evosuite.continuous.project.ProjectAnalyzer in project evosuite by EvoSuite.

the class JobSchedulerTest method testSeeding.

@Test
public void testSeeding() {
    String[] cuts = new String[] { BaseForSeeding.class.getName(), NoBranches.class.getName(), MoreBranches.class.getName(), SomeInterface.class.getName(), SomeInterfaceImpl.class.getName(), SomeBranches.class.getName(), OnlyAbstract.class.getName(), OnlyAbstractImpl.class.getName(), Trivial.class.getName() };
    ProjectAnalyzer analyzer = new ProjectAnalyzer(cuts);
    ProjectStaticData data = analyzer.analyze();
    int cores = 3;
    int memory = 1800;
    int budget = 3;
    CtgConfiguration conf = new CtgConfiguration(memory, cores, budget, 1, false, AvailableSchedule.SEEDING);
    JobScheduler scheduler = new JobScheduler(data, conf);
    List<JobDefinition> jobs = scheduler.createNewSchedule();
    Assert.assertNotNull(jobs);
    for (JobDefinition job : jobs) {
        Assert.assertEquals(600, job.memoryInMB);
    }
    /*
		 * FIXME: in the long run, abstract class with no code should be skipped.
		 * at the moment, they are not, because there is default constructor that
		 * is automatically added
		 */
    // we have 9 classes, but 2 have no code
    // FIXME should be 7
    Assert.assertEquals("Wrong number of jobs: " + jobs.toString(), 8, jobs.size());
    JobDefinition seeding = null;
    for (JobDefinition job : jobs) {
        if (job.cut.equals(BaseForSeeding.class.getName())) {
            seeding = job;
            break;
        }
    }
    Assert.assertNotNull(seeding);
    Set<String> in = seeding.inputClasses;
    Assert.assertNotNull(in);
    System.out.println(in.toString());
    Assert.assertTrue(in.contains(NoBranches.class.getName()));
    Assert.assertTrue(in.contains(SomeBranches.class.getName()));
    Assert.assertTrue(in.contains(SomeInterfaceImpl.class.getName()));
    Assert.assertTrue(in.contains(OnlyAbstractImpl.class.getName()));
    // FIXME should be 4
    Assert.assertEquals(5, in.size());
}
Also used : BaseForSeeding(com.examples.with.different.packagename.continuous.BaseForSeeding) CtgConfiguration(org.evosuite.continuous.CtgConfiguration) ProjectAnalyzer(org.evosuite.continuous.project.ProjectAnalyzer) ProjectStaticData(org.evosuite.continuous.project.ProjectStaticData) Test(org.junit.Test)

Example 4 with ProjectAnalyzer

use of org.evosuite.continuous.project.ProjectAnalyzer in project evosuite by EvoSuite.

the class JobSchedulerTest method testBudget.

@Test
public void testBudget() {
    String[] cuts = new String[] { SomeInterface.class.getName(), NoBranches.class.getName(), SomeBranches.class.getName(), MoreBranches.class.getName() };
    ProjectAnalyzer analyzer = new ProjectAnalyzer(cuts);
    ProjectStaticData data = analyzer.analyze();
    int cores = 2;
    int memory = 1400;
    int budget = 2;
    CtgConfiguration conf = new CtgConfiguration(memory, cores, budget, 1, false, AvailableSchedule.BUDGET);
    JobScheduler scheduler = new JobScheduler(data, conf);
    List<JobDefinition> jobs = scheduler.createNewSchedule();
    Assert.assertNotNull(jobs);
    // we have 4 classes, but one is an interface
    Assert.assertEquals(3, jobs.size());
    for (JobDefinition job : jobs) {
        Assert.assertEquals(700, job.memoryInMB);
    }
    Assert.assertEquals(MoreBranches.class.getName(), jobs.get(0).cut);
    Assert.assertEquals(SomeBranches.class.getName(), jobs.get(1).cut);
    Assert.assertEquals(NoBranches.class.getName(), jobs.get(2).cut);
    long dif01 = jobs.get(0).seconds - jobs.get(1).seconds;
    long dif12 = jobs.get(1).seconds - jobs.get(2).seconds;
    Assert.assertTrue("" + dif01, dif01 > 0);
    Assert.assertTrue("" + dif12, dif12 > 0);
    int sum = jobs.get(0).seconds + jobs.get(1).seconds + jobs.get(2).seconds;
    Assert.assertTrue("wrong value " + sum, sum <= (cores * budget * 60));
}
Also used : MoreBranches(com.examples.with.different.packagename.continuous.MoreBranches) CtgConfiguration(org.evosuite.continuous.CtgConfiguration) ProjectStaticData(org.evosuite.continuous.project.ProjectStaticData) NoBranches(com.examples.with.different.packagename.continuous.NoBranches) SomeBranches(com.examples.with.different.packagename.continuous.SomeBranches) ProjectAnalyzer(org.evosuite.continuous.project.ProjectAnalyzer) Test(org.junit.Test)

Example 5 with ProjectAnalyzer

use of org.evosuite.continuous.project.ProjectAnalyzer in project evosuite by EvoSuite.

the class JobSchedulerTest method testSimple.

@Test
public void testSimple() {
    String[] cuts = new String[] { SomeInterface.class.getName(), NoBranches.class.getName(), SomeBranches.class.getName(), MoreBranches.class.getName() };
    ProjectAnalyzer analyzer = new ProjectAnalyzer(cuts);
    ProjectStaticData data = analyzer.analyze();
    int cores = 2;
    int memory = 1400;
    int budget = 2;
    CtgConfiguration conf = new CtgConfiguration(memory, cores, budget, 1, false, AvailableSchedule.SIMPLE);
    JobScheduler scheduler = new JobScheduler(data, conf);
    List<JobDefinition> jobs = scheduler.createNewSchedule();
    Assert.assertNotNull(jobs);
    // we have 4 classes, but one is an interface
    Assert.assertEquals(3, jobs.size());
    for (JobDefinition job : jobs) {
        Assert.assertEquals(700, job.memoryInMB);
    }
    Assert.assertEquals(jobs.get(0).seconds, jobs.get(1).seconds);
    Assert.assertEquals(jobs.get(2).seconds, jobs.get(1).seconds);
    int sum = jobs.get(0).seconds + jobs.get(1).seconds + jobs.get(2).seconds;
    Assert.assertTrue("wrong value " + sum, sum <= (cores * budget * 60));
}
Also used : CtgConfiguration(org.evosuite.continuous.CtgConfiguration) ProjectAnalyzer(org.evosuite.continuous.project.ProjectAnalyzer) ProjectStaticData(org.evosuite.continuous.project.ProjectStaticData) Test(org.junit.Test)

Aggregations

ProjectAnalyzer (org.evosuite.continuous.project.ProjectAnalyzer)7 ProjectStaticData (org.evosuite.continuous.project.ProjectStaticData)7 CtgConfiguration (org.evosuite.continuous.CtgConfiguration)6 Test (org.junit.Test)6 UsingSimpleAndTrivial (com.examples.with.different.packagename.continuous.UsingSimpleAndTrivial)3 MoreBranches (com.examples.with.different.packagename.continuous.MoreBranches)2 NoBranches (com.examples.with.different.packagename.continuous.NoBranches)2 BaseForSeeding (com.examples.with.different.packagename.continuous.BaseForSeeding)1 Simple (com.examples.with.different.packagename.continuous.Simple)1 SomeBranches (com.examples.with.different.packagename.continuous.SomeBranches)1 Trivial (com.examples.with.different.packagename.continuous.Trivial)1 IOException (java.io.IOException)1 JobDefinition (org.evosuite.continuous.job.JobDefinition)1 JobExecutor (org.evosuite.continuous.job.JobExecutor)1 JobScheduler (org.evosuite.continuous.job.JobScheduler)1 StorageManager (org.evosuite.continuous.persistency.StorageManager)1