14 ->getMockBuilder(Setup\BuildArtifactObjective::class)
15 ->setMethods([
"build",
"buildIn",
"getArtifactPath"])
18 $this->artifact = $this->createMock(Setup\Artifact::class);
19 $this->env = $this->createMock(Setup\Environment::class);
25 ->getMockBuilder(Setup\BuildArtifactObjective::class)
26 ->setMethods([
"build",
"getArtifactPath"])
30 ->expects($this->once())
33 ->willReturn($this->artifact);
35 $this->assertSame($this->artifact, $this->o->buildIn($this->env));
40 $this->assertEquals([], $this->o->getPreconditions($this->env));
45 $path =
"path/to/artifact";
48 ->expects($this->once())
49 ->method(
"getArtifactPath")
53 $this->assertIsString($this->o->getHash());
58 $path =
"path/to/artifact";
61 ->expects($this->once())
62 ->method(
"getArtifactPath")
66 $this->assertEquals(
"Build $path", $this->o->getLabel());
71 $this->assertTrue($this->o->isNotable());
74 const TEST_PATH =
"BuildArtifactObjectiveTest_testAchive";
78 $path = self::TEST_PATH;
80 ->expects($this->atLeastOnce())
81 ->method(
"getArtifactPath")
86 ->expects($this->once())
89 ->willReturn($this->artifact);
91 $artifact =
"THIS IS THE ARTIFACT";
93 ->expects($this->once())
96 ->willReturn($artifact);
98 $this->o->achieve($this->env);
100 $this->assertEquals($artifact, file_get_contents($path));
105 if (file_exists(getcwd() .
"/" . self::TEST_PATH)) {
106 unlink(getcwd() .
"/" . self::TEST_PATH);
testBuildInDefaultsToBuild()