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

Abap environment update addon product #4774

Merged
merged 44 commits into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
cb381f8
new Piper step abapEnvironmentUpdateAddOnProduct
Jk1484 Sep 28, 2023
f23ae37
modified entity json format and some minor function changes
Jk1484 Sep 28, 2023
f49c675
modified groovy file for pipelineStageIntTests and addonDescriptor to…
Jk1484 Sep 28, 2023
c6db332
sync with fork branch ranliii/abap-environment-update-addon-product
Dec 22, 2023
cb1fb1b
Merge branch 'master' into abap-environment-update-addon-product
Dec 22, 2023
37f04fd
Merge branch 'master' into abap-environment-update-addon-product
Jan 15, 2024
fa8f35a
added generated file
Jan 15, 2024
7ef32ad
fail the step as long as addon update not successful and unit tests
Jan 15, 2024
50d68ed
added docu for the new step
Jan 15, 2024
3484ac5
tried to fix groovy unit test
Jan 15, 2024
fd92ae3
tried to fix groovy unit test 2
Jan 15, 2024
bd07066
for test
Jan 17, 2024
4d9881b
fixed error
Jan 17, 2024
52c2b19
fixed error 2
Jan 17, 2024
4d6f0f5
tried to fix groovy unit test error
Jan 18, 2024
d67d949
added groovy unit test for new Piper step
Jan 18, 2024
86c3274
tried to fix groovy unit test error
Jan 18, 2024
61bca1c
tried to fix groovy unit test error 2
Jan 18, 2024
b4a2323
changes after first review
Jan 29, 2024
269be5f
remove .DS_Store
Jan 29, 2024
3a193b0
for test
Jan 31, 2024
aaea394
revert test relevant changes
Feb 1, 2024
d75242e
try to fix groovy test error
Feb 1, 2024
59a62fc
try to fix groovy error
Feb 1, 2024
d889009
3rd try to fix groovy test error
Feb 1, 2024
59f2cd3
rewrite the failed groovy test
Feb 1, 2024
9f81dcb
small changes and try with timeout as well as poll interval
Feb 6, 2024
c10f1e2
changes for test
Feb 6, 2024
05b18ee
revert test-related changes
Feb 12, 2024
3c4a99d
try to fix errors
Feb 12, 2024
1ee0bcd
Merge branch 'master' into abap-environment-update-addon-product
ranliii Feb 12, 2024
363c038
Revert "Merge branch 'master' into abap-environment-update-addon-prod…
Feb 12, 2024
6f7dc1d
try to fix error
Feb 12, 2024
17fb072
try to fix error 2
Feb 12, 2024
7923e37
try to fix error 3
Feb 12, 2024
095fcee
align go.mod with master branch
Feb 12, 2024
4deceef
revert go.mod to commit 3c4a99d
Feb 12, 2024
8270619
for test
Feb 14, 2024
050693f
revert test changes
Feb 14, 2024
48be8a0
new unit test
Feb 14, 2024
6e05b2e
Revert "Revert "Merge branch 'master' into abap-environment-update-ad…
Feb 15, 2024
8c03c3c
Merge branch 'master' into abap-environment-update-addon-product
tiloKo Feb 20, 2024
9c527e3
go generate after merging master
Feb 20, 2024
aaf45b7
Merge branch 'master' into abap-environment-update-addon-product
ranliii Feb 20, 2024
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
474 changes: 474 additions & 0 deletions cmd/abapLandscapePortalUpdateAddOnProduct.go

Large diffs are not rendered by default.

185 changes: 185 additions & 0 deletions cmd/abapLandscapePortalUpdateAddOnProduct_generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions cmd/abapLandscapePortalUpdateAddOnProduct_generated_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
//go:build unit
// +build unit

package cmd

import (
"testing"

"github.com/stretchr/testify/assert"
)

func TestAbapLandscapePortalUpdateAddOnProductCommand(t *testing.T) {
t.Parallel()

testCmd := AbapLandscapePortalUpdateAddOnProductCommand()

// only high level testing performed - details are tested in step generation procedure
assert.Equal(t, "abapLandscapePortalUpdateAddOnProduct", testCmd.Use, "command name incorrect")

}
Loading
Loading