Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1502 config upgrade #1528

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
f0ac1d5
Adjust documentation (#1491)
GuentherJulian Mar 10, 2022
d50efe5
changed eclipse repository to https
maybeec Mar 23, 2022
c90973d
Merge branch 'template-set-deployables' of https://github.com/devonfw…
GuentherJulian Apr 12, 2022
afa4009
Merge branch 'template-set-deployables' of https://github.com/devonfw…
GuentherJulian Apr 27, 2022
99d0412
Merge branch 'template-set-deployables' of https://github.com/devonfw…
GuentherJulian Apr 27, 2022
ac142b3
implemented draft for template set upgrader
GuentherJulian Apr 27, 2022
de42673
trigger getting converted to xml
EduardKrieger May 3, 2022
e32c2f9
context will be splitted, pom generation in progress
EduardKrieger May 3, 2022
366015c
removed useless fields
EduardKrieger May 3, 2022
00ea9f7
removed some comments
EduardKrieger May 3, 2022
b03f97a
implemented some test
EduardKrieger May 5, 2022
962fc72
upgrader implemented
EduardKrieger May 10, 2022
07df50c
added backup folder for old templates
EduardKrieger May 10, 2022
d4409aa
added ignore to templatesetupgradetests
EduardKrieger May 11, 2022
1414163
added ignore to templatesetupgradetests
EduardKrieger May 11, 2022
deff99f
chaanged upgrading process and changed the tests of the upgrade
EduardKrieger Jun 3, 2022
107583c
test for sucessful backup
EduardKrieger Jun 3, 2022
fed6aeb
changed test to use multiple context files
EduardKrieger Jun 14, 2022
2d85462
#1502 changed context version of reader test files to lates compatible
MikeSchumacherCapgemini Jun 14, 2022
faa4d39
changed context version in the jars from the test files
EduardKrieger Jun 14, 2022
f64a021
reworked upgrade step to work with the upgrade prozess to 3.0
EduardKrieger Jun 14, 2022
f81c815
#1502 fixed latest context version in javaplugin integration test
MikeSchumacherCapgemini Jun 14, 2022
50da8b6
Merge branch '1502_config_upgrade' of https://github.com/EduardKriege…
MikeSchumacherCapgemini Jun 14, 2022
691bffa
#1502 fixed some more context versions in tests
MikeSchumacherCapgemini Jun 14, 2022
46ad6b3
moved template upgrade process out of the abstract class
EduardKrieger Jun 14, 2022
e8dfe31
Merge branch '1502_config_upgrade' of https://github.com/EduardKriege…
EduardKrieger Jun 14, 2022
e5641ca
implemented requested changes
EduardKrieger Jun 15, 2022
7e38e28
removed some files
EduardKrieger Jun 16, 2022
8a22fbb
Merge branch 'master' into 1502_config_upgrade
EduardKrieger Jun 16, 2022
dbf2ac7
the requested changes have been added
EduardKrieger Jun 21, 2022
29bff44
changed use of validate process for the readers
EduardKrieger Jun 21, 2022
0398156
Merge branch 'template-set-deployables' into 1502_config_upgrade
EduardKrieger Jun 21, 2022
35b5b29
removed log
EduardKrieger Jun 21, 2022
541aa4d
removed import
EduardKrieger Jun 21, 2022
e4bb73f
#1502 added tags to template sets
jan-vcapgemini Jun 23, 2022
b3fd84b
used correct formatting for few files
EduardKrieger Jun 23, 2022
ae0b497
#1502 addressed requested changes
MikeSchumacherCapgemini Jun 28, 2022
9f22aeb
#1502 replaced generic exceptions with CobigenRuntimeExceptions
MikeSchumacherCapgemini Jun 28, 2022
bfe0ba2
#1502 applied proper code reformat
jan-vcapgemini Jul 1, 2022
3b2cdce
#1502 fixed template set upgrader and tests
jan-vcapgemini Jul 1, 2022
d5654b2
#1502 fixed template set upgrader and tests
jan-vcapgemini Jul 1, 2022
ef431dc
#1502 fixed template set upgrader and tests
jan-vcapgemini Jul 1, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class TemplateConfigurationUpgraderTest extends AbstractUnitTest {
*
* @throws Exception test fails
*/
@Ignore

MikeSchumacherCapgemini marked this conversation as resolved.
Show resolved Hide resolved
@Test
public void testCorrectUpgrade_v1_2_TO_LATEST() throws Exception {

Expand Down Expand Up @@ -71,7 +71,6 @@ public void testCorrectUpgrade_v1_2_TO_LATEST() throws Exception {
*
* @throws Exception test fails
*/
@Ignore
@Test
MikeSchumacherCapgemini marked this conversation as resolved.
Show resolved Hide resolved
public void testCorrectUpgrade_v2_1_TO_LATEST() throws Exception {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public void testTemplateSetUpgrade() throws Exception {
*/
@Test
public void testTemplateSetUpgradeCopyOfTemplates() throws Exception {
// save the data from templates Folder

Path oldTemplatesPath = this.templateLocation.resolve(ConfigurationConstants.COBIGEN_TEMPLATES)
.resolve(ConfigurationConstants.TEMPLATE_RESOURCE_FOLDER);
int OldTemplatesFileCount = oldTemplatesPath.toFile().list().length;
Expand Down