Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Renovate Bot
renovate
Commits
298ca998
Unverified
Commit
298ca998
authored
2 years ago
by
Gabriel-Ladzaretti
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
refactor(onboarding): warning when onboarding pr cant be found (#15724)
parent
e563e22e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/workers/repository/onboarding/pr/index.spec.ts
+34
-0
34 additions, 0 deletions
lib/workers/repository/onboarding/pr/index.spec.ts
lib/workers/repository/onboarding/pr/index.ts
+5
-3
5 additions, 3 deletions
lib/workers/repository/onboarding/pr/index.ts
with
39 additions
and
3 deletions
lib/workers/repository/onboarding/pr/index.spec.ts
+
34
−
0
View file @
298ca998
import
type
{
RequestError
,
Response
}
from
'
got
'
;
import
{
RenovateConfig
,
defaultConfig
,
...
...
@@ -203,5 +204,38 @@ describe('workers/repository/onboarding/pr/index', () => {
'
DRY-RUN: Would create onboarding PR
'
);
});
describe
(
'
ensureOnboardingPr() throws
'
,
()
=>
{
const
response
=
partial
<
Response
>
({
statusCode
:
422
});
const
err
=
partial
<
RequestError
>
({
response
});
beforeEach
(()
=>
{
jest
.
resetAllMocks
();
GlobalConfig
.
reset
();
git
.
deleteBranch
.
mockResolvedValue
();
});
it
(
'
throws when trying to create a new PR
'
,
async
()
=>
{
platform
.
createPr
.
mockRejectedValueOnce
(
err
);
await
expect
(
ensureOnboardingPr
(
config
,
packageFiles
,
branches
)
).
toReject
();
expect
(
git
.
deleteBranch
).
toHaveBeenCalledTimes
(
0
);
});
it
(
'
deletes branch when PR already exists but cannot find it
'
,
async
()
=>
{
err
.
response
.
body
=
{
errors
:
[{
message
:
'
A pull request already exists
'
}],
};
platform
.
createPr
.
mockRejectedValueOnce
(
err
);
await
expect
(
ensureOnboardingPr
(
config
,
packageFiles
,
branches
)
).
toResolve
();
expect
(
logger
.
warn
).
toHaveBeenCalledWith
(
'
Onboarding PR already exists but cannot find it. It was probably created by a different user.
'
);
expect
(
git
.
deleteBranch
).
toHaveBeenCalledTimes
(
1
);
});
});
});
});
This diff is collapsed.
Click to expand it.
lib/workers/repository/onboarding/pr/index.ts
+
5
−
3
View file @
298ca998
...
...
@@ -152,14 +152,16 @@ If you need any further assistance then you can also [request help here](${confi
logger
.
info
({
pr
:
pr
.
displayNumber
},
'
Onboarding PR created
'
);
await
addParticipants
(
config
,
pr
);
}
}
catch
(
err
)
/* istanbul ignore next */
{
}
catch
(
err
)
{
if
(
err
.
statusCode
===
422
&&
err
.
response
?.
statusCode
===
422
&&
err
.
response
?.
body
?.
errors
?.[
0
]?.
message
?.
startsWith
(
'
A pull request already exists
'
)
)
{
logger
.
debug
(
'
Onboarding PR already exists but cannot find it
'
);
logger
.
warn
(
'
Onboarding PR already exists but cannot find it. It was probably created by a different user.
'
);
await
deleteBranch
(
config
.
onboardingBranch
);
return
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment