@Test public void ensureFilesInSubdirectoriesAreKeptInSubDirectories() throws IOException { BuildRuleResolver ruleResolver = new BuildRuleResolver(); BuildTarget target = BuildTargetFactory.newInstance("//:example"); Genrule rule = ruleResolver.buildAndAddToIndex( Genrule.newGenruleBuilder(new FakeAbstractBuildRuleBuilderParams()) .setRelativeToAbsolutePathFunctionForTesting(relativeToAbsolutePathFunction) .setBuildTarget(target) .setBash(Optional.of("ignored")) .addSrc("in-dir.txt") .addSrc("foo/bar.html") .addSrc("other/place.txt") .setOut("example-file")); ImmutableList.Builder<Step> builder = ImmutableList.builder(); rule.addSymlinkCommands(builder); ImmutableList<Step> commands = builder.build(); String baseTmpPath = GEN_DIR + "/example__srcs/"; assertEquals(3, commands.size()); MkdirAndSymlinkFileStep linkCmd = (MkdirAndSymlinkFileStep) commands.get(0); assertEquals("in-dir.txt", linkCmd.getSource()); assertEquals(baseTmpPath + "in-dir.txt", linkCmd.getTarget()); linkCmd = (MkdirAndSymlinkFileStep) commands.get(1); assertEquals("foo/bar.html", linkCmd.getSource()); assertEquals(baseTmpPath + "foo/bar.html", linkCmd.getTarget()); linkCmd = (MkdirAndSymlinkFileStep) commands.get(2); assertEquals("other/place.txt", linkCmd.getSource()); assertEquals(baseTmpPath + "other/place.txt", linkCmd.getTarget()); }
@Test public void testCreateAndRunGenrule() throws IOException, NoSuchBuildTargetException { /* * Programmatically build up a Genrule that corresponds to: * * genrule( * name = 'katana_manifest', * srcs = [ * 'convert_to_katana.py', * 'AndroidManifest.xml', * ], * cmd = 'python $SRCDIR/* > $OUT', * out = 'AndroidManifest.xml', * ) */ BuildRuleResolver ruleResolver = new BuildRuleResolver(); createSampleJavaBinaryRule(ruleResolver); Map<String, ?> instance = ImmutableMap.of( "name", "katana_manifest", "srcs", ImmutableList.<String>of("convert_to_katana.py", "AndroidManifest.xml"), "cmd", "python convert_to_katana.py AndroidManifest.xml > $OUT", "out", "AndroidManifest.xml", "deps", ImmutableList.<String>of("//java/com/facebook/util:util")); // From the Python object, create a GenruleBuildRuleFactory to create a Genrule.Builder // that builds a Genrule from the Python object. BuildTargetParser parser = EasyMock.createNiceMock(BuildTargetParser.class); EasyMock.expect( parser.parse( EasyMock.eq("//java/com/facebook/util:util"), EasyMock.anyObject(ParseContext.class))) .andStubReturn(BuildTargetFactory.newInstance("//java/com/facebook/util:util")); EasyMock.replay(parser); BuildTarget buildTarget = new BuildTarget("//src/com/facebook/katana", "katana_manifest"); BuildRuleFactoryParams params = NonCheckingBuildRuleFactoryParams.createNonCheckingBuildRuleFactoryParams( instance, parser, buildTarget); GenruleBuildRuleFactory factory = new GenruleBuildRuleFactory(); Builder builder = factory.newInstance(params); builder.setRelativeToAbsolutePathFunctionForTesting(relativeToAbsolutePathFunction); Genrule genrule = ruleResolver.buildAndAddToIndex(builder); // Verify all of the observers of the Genrule. assertEquals(BuildRuleType.GENRULE, genrule.getType()); assertEquals( GEN_DIR + "/src/com/facebook/katana/AndroidManifest.xml", genrule.getPathToOutputFile()); assertEquals( getAbsolutePathInBase(GEN_DIR + "/src/com/facebook/katana/AndroidManifest.xml").toString(), genrule.getAbsoluteOutputFilePath()); BuildContext buildContext = null; // unused since there are no deps ImmutableSortedSet<String> inputsToCompareToOutputs = ImmutableSortedSet.of( "src/com/facebook/katana/convert_to_katana.py", "src/com/facebook/katana/AndroidManifest.xml"); assertEquals(inputsToCompareToOutputs, genrule.getInputsToCompareToOutput()); // Verify that the shell commands that the genrule produces are correct. List<Step> steps = genrule.getBuildSteps(buildContext, new FakeBuildableContext()); assertEquals(7, steps.size()); Step firstStep = steps.get(0); assertTrue(firstStep instanceof RmStep); RmStep rmCommand = (RmStep) firstStep; ExecutionContext executionContext = newEmptyExecutionContext(); assertEquals( "First command should delete the output file to be written by the genrule.", ImmutableList.of("rm", "-f", GEN_DIR + "/src/com/facebook/katana/AndroidManifest.xml"), rmCommand.getShellCommand(executionContext)); Step secondStep = steps.get(1); assertTrue(secondStep instanceof MkdirStep); MkdirStep mkdirCommand = (MkdirStep) secondStep; assertEquals( "Second command should make sure the output directory exists.", Paths.get(GEN_DIR + "/src/com/facebook/katana"), mkdirCommand.getPath(executionContext)); Step mkTmpDir = steps.get(2); assertTrue(mkTmpDir instanceof MakeCleanDirectoryStep); MakeCleanDirectoryStep secondMkdirCommand = (MakeCleanDirectoryStep) mkTmpDir; String pathToTmpDir = GEN_DIR + "/src/com/facebook/katana/katana_manifest__tmp"; assertEquals( "Third command should create the temp directory to be written by the genrule.", pathToTmpDir, secondMkdirCommand.getPath()); Step mkSrcDir = steps.get(3); assertTrue(mkSrcDir instanceof MakeCleanDirectoryStep); MakeCleanDirectoryStep thirdMkdirCommand = (MakeCleanDirectoryStep) mkTmpDir; String pathToSrcDir = GEN_DIR + "/src/com/facebook/katana/katana_manifest__srcs"; assertEquals( "Fourth command should create the temp source directory to be written by the genrule.", pathToTmpDir, thirdMkdirCommand.getPath()); MkdirAndSymlinkFileStep linkSource1 = (MkdirAndSymlinkFileStep) steps.get(4); assertEquals("src/com/facebook/katana/convert_to_katana.py", linkSource1.getSource()); assertEquals(pathToSrcDir + "/convert_to_katana.py", linkSource1.getTarget()); MkdirAndSymlinkFileStep linkSource2 = (MkdirAndSymlinkFileStep) steps.get(5); assertEquals("src/com/facebook/katana/AndroidManifest.xml", linkSource2.getSource()); assertEquals(pathToSrcDir + "/AndroidManifest.xml", linkSource2.getTarget()); Step sixthStep = steps.get(6); assertTrue(sixthStep instanceof ShellStep); ShellStep genruleCommand = (ShellStep) sixthStep; assertEquals("genrule", genruleCommand.getShortName()); assertEquals( ImmutableMap.<String, String>builder() .put( "OUT", getAbsolutePathInBase(GEN_DIR + "/src/com/facebook/katana/AndroidManifest.xml") .toString()) .build(), genruleCommand.getEnvironmentVariables(executionContext)); assertEquals( ImmutableList.of( "/bin/bash", "-e", "-c", "python convert_to_katana.py AndroidManifest.xml > $OUT"), genruleCommand.getShellCommand(executionContext)); }