Browse Source

SONAR-21881 Fix SSF-569 on the LTS

tags/9.9.5.90363
Bogdana 3 months ago
parent
commit
f1a28bea68

+ 1
- 1
server/sonar-web/src/main/js/apps/settings/components/almIntegration/BitbucketServerForm.tsx View File

@@ -51,7 +51,7 @@ export default function BitbucketServerForm(props: BitbucketServerFormProps) {
{translate('settings.almintegration.form.url.bitbucket.help')}
<br />
<br />
{translate('settings.almintegration.form.url.bitbucket.pat_warning')}
{translate('settings.almintegration.form.url.pat_warning')}
</>
}
id="url.bitbucket"

+ 3
- 0
server/sonar-web/src/main/js/apps/settings/components/almIntegration/GitlabForm.tsx View File

@@ -51,6 +51,9 @@ export default function GitlabForm(props: GitlabFormProps) {
{translate('settings.almintegration.form.url.gitlab.help')}
<br />
<em>https://gitlab.com/api/v4</em>
<br />
<br />
{translate('settings.almintegration.form.url.pat_warning')}
</>
}
id="url.gitlab"

+ 1
- 1
server/sonar-web/src/main/js/apps/settings/components/almIntegration/__tests__/__snapshots__/BitbucketServerForm-test.tsx.snap View File

@@ -17,7 +17,7 @@ exports[`should render correctly 1`] = `
settings.almintegration.form.url.bitbucket.help
<br />
<br />
settings.almintegration.form.url.bitbucket.pat_warning
settings.almintegration.form.url.pat_warning
</React.Fragment>
}
id="url.bitbucket"

+ 6
- 0
server/sonar-web/src/main/js/apps/settings/components/almIntegration/__tests__/__snapshots__/GitlabForm-test.tsx.snap View File

@@ -19,6 +19,9 @@ exports[`should render correctly 1`] = `
<em>
https://gitlab.com/api/v4
</em>
<br />
<br />
settings.almintegration.form.url.pat_warning
</React.Fragment>
}
id="url.gitlab"
@@ -86,6 +89,9 @@ exports[`should render correctly 2`] = `
<em>
https://gitlab.com/api/v4
</em>
<br />
<br />
settings.almintegration.form.url.pat_warning
</React.Fragment>
}
id="url.gitlab"

+ 2
- 0
server/sonar-webserver-webapi/src/main/java/org/sonar/server/almsettings/ws/UpdateGitlabAction.java View File

@@ -96,6 +96,8 @@ public class UpdateGitlabAction implements AlmSettingsWsAction {
almSettingsSupport.checkAlmSettingDoesNotAlreadyExist(dbSession, newKey);
}

almSettingsSupport.checkPatOnUrlUpdate(almSettingDto, url, pat);

if (isNotBlank(pat)) {
almSettingDto.setPersonalAccessToken(pat);
}

+ 8
- 8
server/sonar-webserver-webapi/src/test/java/org/sonar/server/almsettings/ws/UpdateGitlabActionTest.java View File

@@ -78,7 +78,7 @@ public class UpdateGitlabActionTest {
}

@Test
public void update_with_url() {
public void update_with_url_needs_pat() {
UserDto user = db.users().insertUser();
userSession.logIn(user).setSystemAdministrator();

@@ -114,19 +114,19 @@ public class UpdateGitlabActionTest {
}

@Test
public void update_without_pat() {
public void fail_when_url_updated_without_pat() {
UserDto user = db.users().insertUser();
userSession.logIn(user).setSystemAdministrator();

AlmSettingDto almSettingDto = db.almSettings().insertGitlabAlmSetting();

ws.newRequest()
TestRequest request = ws.newRequest()
.setParam("key", almSettingDto.getKey())
.setParam("url", GITLAB_URL)
.execute();
assertThat(db.getDbClient().almSettingDao().selectAll(db.getSession()))
.extracting(AlmSettingDto::getKey, AlmSettingDto::getUrl, s -> s.getDecryptedPersonalAccessToken(encryption))
.containsOnly(tuple(almSettingDto.getKey(), GITLAB_URL, almSettingDto.getDecryptedPersonalAccessToken(encryption)));
.setParam("url", GITLAB_URL);
assertThatThrownBy(() -> request.execute())
.isInstanceOf(IllegalArgumentException.class)
.hasMessage("Please provide the Personal Access Token to update the URL.");
}

@Test

+ 1
- 1
sonar-core/src/main/resources/org/sonar/l10n/core.properties View File

@@ -1229,13 +1229,13 @@ settings.almintegration.form.url.azure.help1=For Azure DevOps Server, provide th
settings.almintegration.form.url.azure.help2=For Azure DevOps Services, provide the full organization URL:
settings.almintegration.form.url.bitbucket=Bitbucket Server URL
settings.almintegration.form.url.bitbucket.help=Example: https://bitbucket-server.your-company.com
settings.almintegration.form.url.bitbucket.pat_warning=For security reasons, please make sure to provide the Personal Access Token to update the URL.
settings.almintegration.form.url.github=GitHub API URL
settings.almintegration.form.url.github.help1=Example for Github Enterprise:
settings.almintegration.form.url.github.help2=If using GitHub.com:
settings.almintegration.form.url.github.private_key_warning=For security reasons, please make sure to provide the GitHub App private key to update the URL.
settings.almintegration.form.url.gitlab=GitLab API URL
settings.almintegration.form.url.gitlab.help=Provide the GitLab API URL. For example:
settings.almintegration.form.url.pat_warning=For security reasons, please make sure to provide the Personal Access Token to update the URL.
settings.almintegration.form.app_id=GitHub App ID
settings.almintegration.form.client_id.github=Client ID
settings.almintegration.form.client_id.github.help=The Client ID is found on your GitHub App's page.

Loading…
Cancel
Save