Skip to content

Commit

Permalink
Merge pull request #257 from SAP/hidden_artifacts_folder
Browse files Browse the repository at this point in the history
fix verbose makefile template
  • Loading branch information
ShimiT authored Feb 21, 2019
2 parents e8de13c + 9c5aff6 commit 8e76f33
Show file tree
Hide file tree
Showing 15 changed files with 74 additions and 73 deletions.
8 changes: 4 additions & 4 deletions cmd/gen_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ var _ = Describe("Commands", func() {
})

It("Generate Meta", func() {
os.MkdirAll(getTestPath("result", "mtahtml5_mta_build_tmp", "testapp"), os.ModePerm)
os.MkdirAll(getTestPath("result", "mtahtml5_mta_build_tmp", "ui5app2"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".mtahtml5_mta_build_tmp", "testapp"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".mtahtml5_mta_build_tmp", "ui5app2"), os.ModePerm)
metaCmdSrc = getTestPath("mtahtml5")
ep = dir.Loc{SourcePath: metaCmdSrc, TargetPath: metaCmdTrg}
Ω(metaCmd.RunE(nil, []string{})).Should(Succeed())
Expand All @@ -63,8 +63,8 @@ var _ = Describe("Commands", func() {
platform.PlatformConfig = config
})
It("Generate Mtar", func() {
os.MkdirAll(getTestPath("result", "mtahtml5_mta_build_tmp", "testapp"), os.ModePerm)
os.MkdirAll(getTestPath("result", "mtahtml5_mta_build_tmp", "ui5app2"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".mtahtml5_mta_build_tmp", "testapp"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".mtahtml5_mta_build_tmp", "ui5app2"), os.ModePerm)
mtarCmdSrc = getTestPath("mtahtml5")
Ω(metaCmd.RunE(nil, []string{})).Should(Succeed())
Ω(mtarCmd.RunE(nil, []string{})).Should(Succeed())
Expand Down
38 changes: 19 additions & 19 deletions internal/artifacts/manifest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
var _ = Describe("manifest", func() {

BeforeEach(func() {
os.MkdirAll(getTestPath("result", "mta_mta_build_tmp", "META-INF"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".mta_mta_build_tmp", "META-INF"), os.ModePerm)
})

AfterEach(func() {
Expand All @@ -29,44 +29,44 @@ var _ = Describe("manifest", func() {

var _ = Describe("setManifestDesc", func() {
It("Sanity", func() {
os.Mkdir(getTestPath("result", "mta_mta_build_tmp", "node-js"), os.ModePerm)
os.Create(getTestPath("result", "mta_mta_build_tmp", "node-js", "data.zip"))
dirC, _ := ioutil.ReadDir(getTestPath("result", "mta_mta_build_tmp"))
os.Mkdir(getTestPath("result", ".mta_mta_build_tmp", "node-js"), os.ModePerm)
os.Create(getTestPath("result", ".mta_mta_build_tmp", "node-js", "data.zip"))
dirC, _ := ioutil.ReadDir(getTestPath("result", ".mta_mta_build_tmp"))
for _, c := range dirC {
fmt.Println(c.Name())
}
loc := dir.Loc{SourcePath: getTestPath("mta"), TargetPath: getResultPath()}
mtaObj, err := loc.ParseFile()
Ω(err).Should(Succeed())
Ω(setManifestDesc(&loc, &loc, mtaObj.Modules, []*mta.Resource{}, []string{}, false)).Should(Succeed())
actual := getFileContent(getTestPath("result", "mta_mta_build_tmp", "META-INF", "MANIFEST.MF"))
actual := getFileContent(getTestPath("result", ".mta_mta_build_tmp", "META-INF", "MANIFEST.MF"))
golden := getFileContent(getTestPath("golden_manifest.mf"))
fmt.Println(actual)
fmt.Println(golden)
Ω(actual).Should(Equal(golden))
})
It("Sanity - no paths", func() {
os.Mkdir(getTestPath("result", "mta_mta_build_tmp", "node-js"), os.ModePerm)
os.Mkdir(getTestPath("result", ".mta_mta_build_tmp", "node-js"), os.ModePerm)
loc := dir.Loc{SourcePath: getTestPath("mta"), TargetPath: getResultPath(), MtaFilename: "mta_no_paths.yaml"}
mtaObj, err := loc.ParseFile()
Ω(err).Should(Succeed())
Ω(setManifestDesc(&loc, &loc, mtaObj.Modules, []*mta.Resource{}, []string{}, false)).Should(Succeed())
actual := getFileContent(getTestPath("result", "mta_mta_build_tmp", "META-INF", "MANIFEST.MF"))
actual := getFileContent(getTestPath("result", ".mta_mta_build_tmp", "META-INF", "MANIFEST.MF"))
golden := getFileContent(getTestPath("golden_assembly_manifest_no_paths.mf"))
fmt.Println(actual)
fmt.Println(golden)
Ω(actual).Should(Equal(golden))
})
It("With resources", func() {
os.MkdirAll(getTestPath("result", "assembly-sample_mta_build_tmp", "META-INF"), os.ModePerm)
os.MkdirAll(getTestPath("result", "assembly-sample_mta_build_tmp", "web"), os.ModePerm)
os.Create(getTestPath("result", "assembly-sample_mta_build_tmp", "config-site-host.json"))
os.Create(getTestPath("result", "assembly-sample_mta_build_tmp", "xs-security.json"))
os.MkdirAll(getTestPath("result", ".assembly-sample_mta_build_tmp", "META-INF"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".assembly-sample_mta_build_tmp", "web"), os.ModePerm)
os.Create(getTestPath("result", ".assembly-sample_mta_build_tmp", "config-site-host.json"))
os.Create(getTestPath("result", ".assembly-sample_mta_build_tmp", "xs-security.json"))
loc := dir.Loc{SourcePath: getTestPath("assembly-sample"), TargetPath: getResultPath(), Descriptor: "dep"}
mtaObj, err := loc.ParseFile()
Ω(err).Should(Succeed())
Ω(setManifestDesc(&loc, &loc, mtaObj.Modules, mtaObj.Resources, []string{}, false)).Should(Succeed())
actual := getFileContent(getTestPath("result", "assembly-sample_mta_build_tmp", "META-INF", "MANIFEST.MF"))
actual := getFileContent(getTestPath("result", ".assembly-sample_mta_build_tmp", "META-INF", "MANIFEST.MF"))
golden := getFileContent(getTestPath("golden_assembly_manifest.mf"))
fmt.Println(actual)
fmt.Println(golden)
Expand All @@ -82,9 +82,9 @@ var _ = Describe("manifest", func() {
Ω(err.Error()).Should(ContainSubstring(`failed to generate the manifest file when getting the "java-hello-world" module content type`))
})
It("With missing resource", func() {
os.MkdirAll(getTestPath("result1", "assembly-sample_mta_build_tmp", "META-INF"), os.ModePerm)
os.MkdirAll(getTestPath("result1", "assembly-sample_mta_build_tmp", "web"), os.ModePerm)
os.Create(getTestPath("result1", "assembly-sample_mta_build_tmp", "config-site-host.json"))
os.MkdirAll(getTestPath("result1", ".assembly-sample_mta_build_tmp", "META-INF"), os.ModePerm)
os.MkdirAll(getTestPath("result1", ".assembly-sample_mta_build_tmp", "web"), os.ModePerm)
os.Create(getTestPath("result1", ".assembly-sample_mta_build_tmp", "config-site-host.json"))
loc := dir.Loc{SourcePath: getTestPath("assembly-sample"), TargetPath: getTestPath("result1"), Descriptor: "dep"}
mtaObj, err := loc.ParseFile()
Ω(err).Should(Succeed())
Expand All @@ -94,9 +94,9 @@ var _ = Describe("manifest", func() {

})
It("With missing requirement", func() {
os.MkdirAll(getTestPath("result2", "assembly-sample_mta_build_tmp", "META-INF"), os.ModePerm)
os.MkdirAll(getTestPath("result2", "assembly-sample_mta_build_tmp", "web"), os.ModePerm)
os.Create(getTestPath("result2", "assembly-sample", "xs-security.json"))
os.MkdirAll(getTestPath("result2", ".assembly-sample_mta_build_tmp", "META-INF"), os.ModePerm)
os.MkdirAll(getTestPath("result2", ".assembly-sample_mta_build_tmp", "web"), os.ModePerm)
os.Create(getTestPath("result2", ".assembly-sample", "xs-security.json"))
loc := dir.Loc{SourcePath: getTestPath("assembly-sample"), TargetPath: getTestPath("result2"), Descriptor: "dep"}
mtaObj, err := loc.ParseFile()
Ω(err).Should(Succeed())
Expand All @@ -120,7 +120,7 @@ var _ = Describe("manifest", func() {
},
}
Ω(genManifest(loc.GetManifestPath(), entries)).Should(Succeed())
actual := getFileContent(getTestPath("result", "mta_mta_build_tmp", "META-INF", "MANIFEST.MF"))
actual := getFileContent(getTestPath("result", ".mta_mta_build_tmp", "META-INF", "MANIFEST.MF"))
golden := getFileContent(getTestPath("golden_manifest.mf"))
Ω(actual).Should(Equal(golden))
})
Expand Down
18 changes: 9 additions & 9 deletions internal/artifacts/meta_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ var _ = Describe("Meta", func() {
var _ = Describe("ExecuteGenMeta", func() {

It("Sanity", func() {
os.MkdirAll(getTestPath("result", "mtahtml5_mta_build_tmp", "ui5app2"), os.ModePerm)
os.MkdirAll(getTestPath("result", "mtahtml5_mta_build_tmp", "testapp"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".mtahtml5_mta_build_tmp", "ui5app2"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".mtahtml5_mta_build_tmp", "testapp"), os.ModePerm)
Ω(ExecuteGenMeta(getTestPath("mtahtml5"), getResultPath(), "dev", "cf", true, os.Getwd)).Should(Succeed())
Ω(getTestPath("result", "mtahtml5_mta_build_tmp", "META-INF", "MANIFEST.MF")).Should(BeAnExistingFile())
Ω(getTestPath("result", "mtahtml5_mta_build_tmp", "META-INF", "mtad.yaml")).Should(BeAnExistingFile())
Ω(getTestPath("result", ".mtahtml5_mta_build_tmp", "META-INF", "MANIFEST.MF")).Should(BeAnExistingFile())
Ω(getTestPath("result", ".mtahtml5_mta_build_tmp", "META-INF", "mtad.yaml")).Should(BeAnExistingFile())
})

It("Wrong location - fails on Working directory get", func() {
Expand Down Expand Up @@ -58,7 +58,7 @@ modules:
It("Sanity", func() {
m := mta.MTA{}
yaml.Unmarshal(mtaSingleModule, &m)
os.MkdirAll(getTestPath("result", "testproject_mta_build_tmp", "app"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".testproject_mta_build_tmp", "app"), os.ModePerm)
Ω(GenMetaInfo(&ep, &ep, ep.IsDeploymentDescriptor(), "cf",
&m, []string{"htmlapp"}, true)).Should(Succeed())
Ω(ep.GetManifestPath()).Should(BeAnExistingFile())
Expand Down Expand Up @@ -110,16 +110,16 @@ cli_version:["x"]
It("Generate Meta", func() {
ep := dir.Loc{SourcePath: getTestPath("mtahtml5"), TargetPath: getResultPath()}
generateMeta(&ep, &ep, &ep, false, "cf", true)
Ω(readFileContent(&dir.Loc{SourcePath: getTestPath("result", "mtahtml5_mta_build_tmp", "META-INF"), Descriptor: "dep"})).
Ω(readFileContent(&dir.Loc{SourcePath: getTestPath("result", ".mtahtml5_mta_build_tmp", "META-INF"), Descriptor: "dep"})).
Should(Equal(readFileContent(&dir.Loc{SourcePath: getTestPath("golden"), Descriptor: "dep"})))
})

It("Generate Meta - with extension file", func() {
ep := dir.Loc{SourcePath: getTestPath("mtahtml5"), TargetPath: getResultPath()}
os.MkdirAll(getTestPath("result", "mtahtml5_mta_build_tmp", "testapp"), os.ModePerm)
os.MkdirAll(getTestPath("result", "mtahtml5_mta_build_tmp", "ui5app2"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".mtahtml5_mta_build_tmp", "testapp"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".mtahtml5_mta_build_tmp", "ui5app2"), os.ModePerm)
Ω(generateMeta(&ep, &ep, &ep, false, "cf", true)).Should(Succeed())
actual := readFileContent(&dir.Loc{SourcePath: getTestPath("result", "mtahtml5_mta_build_tmp", "META-INF"), Descriptor: "dep"})
actual := readFileContent(&dir.Loc{SourcePath: getTestPath("result", ".mtahtml5_mta_build_tmp", "META-INF"), Descriptor: "dep"})
golden := readFileContent(&dir.Loc{SourcePath: getTestPath("golden"), Descriptor: "dep"})
Ω(actual).Should(Equal(golden))
})
Expand Down
42 changes: 21 additions & 21 deletions internal/artifacts/module_arch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ builders:
})

It("Target folder exists as file", func() {
os.MkdirAll(getTestPath("result", "mta_mta_build_tmp"), os.ModePerm)
createFile("result", "mta_mta_build_tmp", "node-js")
os.MkdirAll(getTestPath("result", ".mta_mta_build_tmp"), os.ModePerm)
createFile("result", ".mta_mta_build_tmp", "node-js")
Ω(ExecutePack(getTestPath("mta"), getResultPath(), "dev", "node-js",
"cf", os.Getwd)).Should(HaveOccurred())
})
Expand All @@ -110,7 +110,7 @@ builders:
Descriptor: "dep",
}
Ω(packModule(&ep, true, &m, "node-js", "cf")).Should(Succeed())
Ω(getTestPath("result", "mta_with_zipped_module_mta_build_tmp", "node-js", "data.zip")).Should(BeAnExistingFile())
Ω(getTestPath("result", ".mta_with_zipped_module_mta_build_tmp", "node-js", "data.zip")).Should(BeAnExistingFile())
})

// ep.GetTargetModuleDir(moduleName)
Expand All @@ -128,8 +128,8 @@ builders:
TargetPath: getResultPath(),
Descriptor: "dev",
}
os.MkdirAll(filepath.Join(ep.GetTarget(), "mta_with_zipped_module_mta_build_tmp"), os.ModePerm)
createFile("result", "mta_with_zipped_module_mta_build_tmp", "node-js")
os.MkdirAll(filepath.Join(ep.GetTarget(), ".mta_with_zipped_module_mta_build_tmp"), os.ModePerm)
createFile("result", ".mta_with_zipped_module_mta_build_tmp", "node-js")
Ω(packModule(&ep, false, &m, "node-js", "cf")).Should(HaveOccurred())
})
})
Expand Down Expand Up @@ -203,9 +203,9 @@ module-types:
})

It("Target folder exists as a file - dev", func() {
os.MkdirAll(getTestPath("result", "mta_mta_build_tmp"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".mta_mta_build_tmp"), os.ModePerm)
ep := dir.Loc{SourcePath: getTestPath("mta"), TargetPath: getResultPath()}
createFile("result", "mta_mta_build_tmp", "node-js")
createFile("result", ".mta_mta_build_tmp", "node-js")
Ω(buildModule(&ep, &ep, false, "node-js", "cf")).Should(HaveOccurred())
})

Expand Down Expand Up @@ -257,8 +257,8 @@ module-types:
})
It("Target directory exists as file", func() {
ep := dir.Loc{SourcePath: getTestPath("mta_with_zipped_module"), TargetPath: getResultPath()}
os.MkdirAll(getTestPath("result", "mta_with_zipped_module_mta_build_tmp"), os.ModePerm)
createFile("result", "mta_with_zipped_module_mta_build_tmp", "node-js")
os.MkdirAll(getTestPath("result", ".mta_with_zipped_module_mta_build_tmp"), os.ModePerm)
createFile("result", ".mta_with_zipped_module_mta_build_tmp", "node-js")
Ω(copyModuleArchive(&ep, "node-js", "node-js")).Should(HaveOccurred())
})
})
Expand Down Expand Up @@ -292,8 +292,8 @@ module-types:
err := CopyMtaContent(source, source, defaultDeploymentDescriptorParam, os.Getwd)
Ω(err).Should((BeNil()))
info, _ := os.Stat(source)
Ω(dirContainsAllElements(source, map[string]bool{info.Name() + dir.TempFolderSuffix: true}, false)).Should(Equal(true))
Ω(dirContainsAllElements(filepath.Join(source, info.Name()+dir.TempFolderSuffix), map[string]bool{"test.zip": true, "test-content": true}, true)).Should(Equal(true))
Ω(dirContainsAllElements(source, map[string]bool{"." + info.Name() + dir.TempFolderSuffix: true}, false)).Should(Equal(true))
Ω(dirContainsAllElements(filepath.Join(source, "."+info.Name()+dir.TempFolderSuffix), map[string]bool{"test.zip": true, "test-content": true}, true)).Should(Equal(true))
})
It("With a deployment descriptor in the source directory with one module path and one resource path as zip archuve and a folder", func() {
createFileInGivenPath(filepath.Join(source, defaultDeploymentDescriptorName))
Expand All @@ -303,8 +303,8 @@ module-types:
err := CopyMtaContent(source, source, defaultDeploymentDescriptorParam, os.Getwd)
Ω(err).Should((BeNil()))
info, _ := os.Stat(source)
Ω(dirContainsAllElements(source, map[string]bool{info.Name() + dir.TempFolderSuffix: true}, false)).Should(Equal(true))
Ω(dirContainsAllElements(filepath.Join(source, info.Name()+dir.TempFolderSuffix), map[string]bool{"test.zip": true, "test-content": true}, true)).Should(Equal(true))
Ω(dirContainsAllElements(source, map[string]bool{"." + info.Name() + dir.TempFolderSuffix: true}, false)).Should(Equal(true))
Ω(dirContainsAllElements(filepath.Join(source, "."+info.Name()+dir.TempFolderSuffix), map[string]bool{"test.zip": true, "test-content": true}, true)).Should(Equal(true))
})
It("With a deployment descriptor in the source directory with only resources with zip and module archives", func() {
createFileInGivenPath(filepath.Join(source, defaultDeploymentDescriptorName))
Expand All @@ -314,8 +314,8 @@ module-types:
err := CopyMtaContent(source, source, defaultDeploymentDescriptorParam, os.Getwd)
Ω(err).Should((BeNil()))
info, _ := os.Stat(source)
Ω(dirContainsAllElements(source, map[string]bool{info.Name() + dir.TempFolderSuffix: true}, false)).Should(Equal(true))
Ω(dirContainsAllElements(filepath.Join(source, info.Name()+dir.TempFolderSuffix), map[string]bool{"test.zip": true, "test-content": true}, true)).Should(Equal(true))
Ω(dirContainsAllElements(source, map[string]bool{"." + info.Name() + dir.TempFolderSuffix: true}, false)).Should(Equal(true))
Ω(dirContainsAllElements(filepath.Join(source, "."+info.Name()+dir.TempFolderSuffix), map[string]bool{"test.zip": true, "test-content": true}, true)).Should(Equal(true))
})
It("With a deployment descriptor in the source directory with only resources with zip and module archives", func() {
createFileInGivenPath(filepath.Join(source, defaultDeploymentDescriptorName))
Expand All @@ -325,8 +325,8 @@ module-types:
err := CopyMtaContent(source, source, defaultDeploymentDescriptorParam, os.Getwd)
Ω(err).Should((BeNil()))
info, _ := os.Stat(source)
Ω(dirContainsAllElements(source, map[string]bool{info.Name() + dir.TempFolderSuffix: true}, false)).Should(Equal(true))
Ω(dirContainsAllElements(filepath.Join(source, info.Name()+dir.TempFolderSuffix), map[string]bool{"test.zip": true}, true)).Should(Equal(true))
Ω(dirContainsAllElements(source, map[string]bool{"." + info.Name() + dir.TempFolderSuffix: true}, false)).Should(Equal(true))
Ω(dirContainsAllElements(filepath.Join(source, "."+info.Name()+dir.TempFolderSuffix), map[string]bool{"test.zip": true}, true)).Should(Equal(true))
})

It("With a deployment descriptor in the source directory with only one module with zip and one requiredDependency with folder", func() {
Expand All @@ -337,8 +337,8 @@ module-types:
err := CopyMtaContent(source, source, defaultDeploymentDescriptorParam, os.Getwd)
Ω(err).Should((BeNil()))
info, _ := os.Stat(source)
Ω(dirContainsAllElements(source, map[string]bool{info.Name() + dir.TempFolderSuffix: true}, false)).Should(Equal(true))
Ω(dirContainsAllElements(filepath.Join(source, info.Name()+dir.TempFolderSuffix), map[string]bool{"test.zip": true, "test-content": true}, true)).Should(Equal(true))
Ω(dirContainsAllElements(source, map[string]bool{"." + info.Name() + dir.TempFolderSuffix: true}, false)).Should(Equal(true))
Ω(dirContainsAllElements(filepath.Join(source, "."+info.Name()+dir.TempFolderSuffix), map[string]bool{"test.zip": true, "test-content": true}, true)).Should(Equal(true))
})
It("With a deployment descriptor in the source directory with only one module with zip and missing requiredDependency", func() {
createFileInGivenPath(filepath.Join(source, defaultDeploymentDescriptorName))
Expand Down Expand Up @@ -388,8 +388,8 @@ module-types:
err := CopyMtaContent(source, source, defaultDeploymentDescriptorParam, os.Getwd)
Ω(err).Should((BeNil()))
info, _ := os.Stat(source)
Ω(dirContainsAllElements(source, map[string]bool{info.Name() + dir.TempFolderSuffix: true}, false)).Should(Equal(true))
Ω(dirContainsAllElements(filepath.Join(source, info.Name()+dir.TempFolderSuffix), map[string]bool{"test.zip": true}, true)).Should(Equal(true))
Ω(dirContainsAllElements(source, map[string]bool{"." + info.Name() + dir.TempFolderSuffix: true}, false)).Should(Equal(true))
Ω(dirContainsAllElements(filepath.Join(source, "."+info.Name()+dir.TempFolderSuffix), map[string]bool{"test.zip": true}, true)).Should(Equal(true))
})

AfterEach(func() {
Expand Down
8 changes: 4 additions & 4 deletions internal/artifacts/mtar_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ var _ = Describe("Mtar", func() {

var _ = Describe("ExecuteGenMtar", func() {
It("Sanity", func() {
os.MkdirAll(getTestPath("result", "mtahtml5_mta_build_tmp", "testapp"), os.ModePerm)
os.MkdirAll(getTestPath("result", "mtahtml5_mta_build_tmp", "ui5app2"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".mtahtml5_mta_build_tmp", "testapp"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".mtahtml5_mta_build_tmp", "ui5app2"), os.ModePerm)
Ω(ExecuteGenMeta(getTestPath("mtahtml5"), getResultPath(), "dev", "cf", true, os.Getwd)).Should(Succeed())
Ω(ExecuteGenMtar(getTestPath("mtahtml5"), getResultPath(), "dev", os.Getwd)).Should(Succeed())
Ω(getTestPath("result", "mta_archives", "mtahtml5_0.0.1.mtar")).Should(BeAnExistingFile())
Expand All @@ -40,8 +40,8 @@ var _ = Describe("Mtar", func() {

It("Generate Mtar - Sanity", func() {
ep := dir.Loc{SourcePath: getTestPath("mtahtml5"), TargetPath: getResultPath()}
os.MkdirAll(getTestPath("result", "mtahtml5_mta_build_tmp", "testapp"), os.ModePerm)
os.MkdirAll(getTestPath("result", "mtahtml5_mta_build_tmp", "ui5app2"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".mtahtml5_mta_build_tmp", "testapp"), os.ModePerm)
os.MkdirAll(getTestPath("result", ".mtahtml5_mta_build_tmp", "ui5app2"), os.ModePerm)
Ω(generateMeta(&ep, &ep, &ep, false, "cf", true)).Should(Succeed())
mtarPath, err := generateMtar(&ep, &ep)
Ω(err).Should(Succeed())
Expand Down
Loading

0 comments on commit 8e76f33

Please sign in to comment.