-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test: Fix application.a expected resources
- Loading branch information
1 parent
8f29205
commit c2742e7
Showing
36 changed files
with
222 additions
and
64 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
test/expected/build/application.a/dest-deps-excl/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Application A</title> | ||
<script id="sap-ui-bootstrap" src="test.js"> | ||
</script> | ||
</head> | ||
<body> | ||
|
||
</body> | ||
</html> |
17 changes: 17 additions & 0 deletions
17
test/expected/build/application.a/dest-deps-excl/resources/library/a/.library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<library xmlns="http://www.sap.com/sap.ui.library.xsd" > | ||
|
||
<name>library.a</name> | ||
<vendor>SAP SE</vendor> | ||
<copyright>Some fancy copyright ${currentYear}</copyright> | ||
<version>1.0.0</version> | ||
|
||
<documentation>Library A</documentation> | ||
|
||
<dependencies> | ||
<dependency> | ||
<libraryName>library.d</libraryName> | ||
</dependency> | ||
</dependencies> | ||
|
||
</library> |
3 changes: 3 additions & 0 deletions
3
...pected/build/application.a/dest-deps-excl/resources/library/a/themes/base/library-RTL.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.library-a-foo{color:#fafad2;padding:1px 4px 3px 2px} | ||
/* Inline theming parameters */ | ||
#sap-ui-theme-library\.a{background-image:url('data:text/plain;utf-8,%7B%22libraryAColor1%22%3A%22%23fafad2%22%7D')} |
1 change: 1 addition & 0 deletions
1
...uild/application.a/dest-deps-excl/resources/library/a/themes/base/library-parameters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"libraryAColor1":"#fafad2"} |
3 changes: 3 additions & 0 deletions
3
test/expected/build/application.a/dest-deps-excl/resources/library/a/themes/base/library.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.library-a-foo{color:#fafad2;padding:1px 2px 3px 4px} | ||
/* Inline theming parameters */ | ||
#sap-ui-theme-library\.a{background-image:url('data:text/plain;utf-8,%7B%22libraryAColor1%22%3A%22%23fafad2%22%7D')} |
6 changes: 6 additions & 0 deletions
6
...ed/build/application.a/dest-deps-excl/resources/library/a/themes/base/library.source.less
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@libraryAColor1: lightgoldenrodyellow; | ||
|
||
.library-a-foo { | ||
color: @libraryAColor1; | ||
padding: 1px 2px 3px 4px; | ||
} |
17 changes: 17 additions & 0 deletions
17
test/expected/build/application.a/dest-deps-excl/resources/library/b/.library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<library xmlns="http://www.sap.com/sap.ui.library.xsd" > | ||
|
||
<name>library.b</name> | ||
<vendor>SAP SE</vendor> | ||
<copyright>Some fancy copyright ${currentYear}</copyright> | ||
<version>1.0.0</version> | ||
|
||
<documentation>Library B</documentation> | ||
|
||
<dependencies> | ||
<dependency> | ||
<libraryName>library.d</libraryName> | ||
</dependency> | ||
</dependencies> | ||
|
||
</library> |
17 changes: 17 additions & 0 deletions
17
test/expected/build/application.a/dest-deps-excl/resources/library/c/.library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<library xmlns="http://www.sap.com/sap.ui.library.xsd" > | ||
|
||
<name>library.c</name> | ||
<vendor>SAP SE</vendor> | ||
<copyright>${copyright}</copyright> | ||
<version>1.0.0</version> | ||
|
||
<documentation>Library C</documentation> | ||
|
||
<dependencies> | ||
<dependency> | ||
<libraryName>library.d</libraryName> | ||
</dependency> | ||
</dependencies> | ||
|
||
</library> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
sap.ui.define([ | ||
"library/d/some" | ||
], function(someObject) { | ||
function test(paramA) { | ||
var variableA = paramA; | ||
console.log(variableA); | ||
} | ||
test(); | ||
}); |
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
sap.ui.define(["library/d/some"],function(n){function o(n){var o=n;console.log(o)}o()}); |
17 changes: 17 additions & 0 deletions
17
test/expected/build/application.a/dest-deps/resources/library/a/.library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<library xmlns="http://www.sap.com/sap.ui.library.xsd" > | ||
|
||
<name>library.a</name> | ||
<vendor>SAP SE</vendor> | ||
<copyright>Some fancy copyright ${currentYear}</copyright> | ||
<version>1.0.0</version> | ||
|
||
<documentation>Library A</documentation> | ||
|
||
<dependencies> | ||
<dependency> | ||
<libraryName>library.d</libraryName> | ||
</dependency> | ||
</dependencies> | ||
|
||
</library> |
3 changes: 3 additions & 0 deletions
3
test/expected/build/application.a/dest-deps/resources/library/a/themes/base/library-RTL.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.library-a-foo{color:#fafad2;padding:1px 4px 3px 2px} | ||
/* Inline theming parameters */ | ||
#sap-ui-theme-library\.a{background-image:url('data:text/plain;utf-8,%7B%22libraryAColor1%22%3A%22%23fafad2%22%7D')} |
1 change: 1 addition & 0 deletions
1
...ted/build/application.a/dest-deps/resources/library/a/themes/base/library-parameters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"libraryAColor1":"#fafad2"} |
3 changes: 3 additions & 0 deletions
3
test/expected/build/application.a/dest-deps/resources/library/a/themes/base/library.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.library-a-foo{color:#fafad2;padding:1px 2px 3px 4px} | ||
/* Inline theming parameters */ | ||
#sap-ui-theme-library\.a{background-image:url('data:text/plain;utf-8,%7B%22libraryAColor1%22%3A%22%23fafad2%22%7D')} |
6 changes: 6 additions & 0 deletions
6
...xpected/build/application.a/dest-deps/resources/library/a/themes/base/library.source.less
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@libraryAColor1: lightgoldenrodyellow; | ||
|
||
.library-a-foo { | ||
color: @libraryAColor1; | ||
padding: 1px 2px 3px 4px; | ||
} |
17 changes: 17 additions & 0 deletions
17
test/expected/build/application.a/dest-deps/resources/library/b/.library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<library xmlns="http://www.sap.com/sap.ui.library.xsd" > | ||
|
||
<name>library.b</name> | ||
<vendor>SAP SE</vendor> | ||
<copyright>Some fancy copyright ${currentYear}</copyright> | ||
<version>1.0.0</version> | ||
|
||
<documentation>Library B</documentation> | ||
|
||
<dependencies> | ||
<dependency> | ||
<libraryName>library.d</libraryName> | ||
</dependency> | ||
</dependencies> | ||
|
||
</library> |
17 changes: 17 additions & 0 deletions
17
test/expected/build/application.a/dest-deps/resources/library/c/.library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<library xmlns="http://www.sap.com/sap.ui.library.xsd" > | ||
|
||
<name>library.c</name> | ||
<vendor>SAP SE</vendor> | ||
<copyright>${copyright}</copyright> | ||
<version>1.0.0</version> | ||
|
||
<documentation>Library C</documentation> | ||
|
||
<dependencies> | ||
<dependency> | ||
<libraryName>library.d</libraryName> | ||
</dependency> | ||
</dependencies> | ||
|
||
</library> |
28 changes: 0 additions & 28 deletions
28
test/expected/build/application.a/dest-deps/resources/library/d/manifest.json
This file was deleted.
Oops, something went wrong.
Empty file.
Empty file.
Empty file.
17 changes: 17 additions & 0 deletions
17
test/expected/build/application.a/dest-depself/resources/library/a/.library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<library xmlns="http://www.sap.com/sap.ui.library.xsd" > | ||
|
||
<name>library.a</name> | ||
<vendor>SAP SE</vendor> | ||
<copyright>Some fancy copyright ${currentYear}</copyright> | ||
<version>1.0.0</version> | ||
|
||
<documentation>Library A</documentation> | ||
|
||
<dependencies> | ||
<dependency> | ||
<libraryName>library.d</libraryName> | ||
</dependency> | ||
</dependencies> | ||
|
||
</library> |
3 changes: 3 additions & 0 deletions
3
...expected/build/application.a/dest-depself/resources/library/a/themes/base/library-RTL.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.library-a-foo{color:#fafad2;padding:1px 4px 3px 2px} | ||
/* Inline theming parameters */ | ||
#sap-ui-theme-library\.a{background-image:url('data:text/plain;utf-8,%7B%22libraryAColor1%22%3A%22%23fafad2%22%7D')} |
1 change: 1 addition & 0 deletions
1
.../build/application.a/dest-depself/resources/library/a/themes/base/library-parameters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"libraryAColor1":"#fafad2"} |
3 changes: 3 additions & 0 deletions
3
test/expected/build/application.a/dest-depself/resources/library/a/themes/base/library.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.library-a-foo{color:#fafad2;padding:1px 2px 3px 4px} | ||
/* Inline theming parameters */ | ||
#sap-ui-theme-library\.a{background-image:url('data:text/plain;utf-8,%7B%22libraryAColor1%22%3A%22%23fafad2%22%7D')} |
6 changes: 6 additions & 0 deletions
6
...cted/build/application.a/dest-depself/resources/library/a/themes/base/library.source.less
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@libraryAColor1: lightgoldenrodyellow; | ||
|
||
.library-a-foo { | ||
color: @libraryAColor1; | ||
padding: 1px 2px 3px 4px; | ||
} |
17 changes: 17 additions & 0 deletions
17
test/expected/build/application.a/dest-depself/resources/library/b/.library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<library xmlns="http://www.sap.com/sap.ui.library.xsd" > | ||
|
||
<name>library.b</name> | ||
<vendor>SAP SE</vendor> | ||
<copyright>Some fancy copyright ${currentYear}</copyright> | ||
<version>1.0.0</version> | ||
|
||
<documentation>Library B</documentation> | ||
|
||
<dependencies> | ||
<dependency> | ||
<libraryName>library.d</libraryName> | ||
</dependency> | ||
</dependencies> | ||
|
||
</library> |
17 changes: 17 additions & 0 deletions
17
test/expected/build/application.a/dest-depself/resources/library/c/.library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<library xmlns="http://www.sap.com/sap.ui.library.xsd" > | ||
|
||
<name>library.c</name> | ||
<vendor>SAP SE</vendor> | ||
<copyright>${copyright}</copyright> | ||
<version>1.0.0</version> | ||
|
||
<documentation>Library C</documentation> | ||
|
||
<dependencies> | ||
<dependency> | ||
<libraryName>library.d</libraryName> | ||
</dependency> | ||
</dependencies> | ||
|
||
</library> |
28 changes: 0 additions & 28 deletions
28
test/expected/build/application.a/dest-depself/resources/library/d/manifest.json
This file was deleted.
Oops, something went wrong.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters