-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SLCORE-690 Revert deletion of API class
- Loading branch information
1 parent
192a4e3
commit a1cd4c5
Showing
3 changed files
with
85 additions
and
7 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
backend/commons/src/main/java/org/sonarsource/sonarlint/core/commons/SonarLintUserHome.java
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,44 @@ | ||
/* | ||
* SonarLint Core - Commons | ||
* Copyright (C) 2016-2025 SonarSource SA | ||
* mailto:info AT sonarsource DOT com | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 3 of the License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this program; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
*/ | ||
package org.sonarsource.sonarlint.core.commons; | ||
|
||
import java.nio.file.Path; | ||
import java.nio.file.Paths; | ||
import javax.annotation.Nullable; | ||
|
||
public class SonarLintUserHome { | ||
|
||
public static final String SONARLINT_USER_HOME_ENV = "SONARLINT_USER_HOME"; | ||
|
||
private SonarLintUserHome() { | ||
// utility class, forbidden constructor | ||
} | ||
|
||
public static Path get() { | ||
return home(System.getenv(SONARLINT_USER_HOME_ENV)); | ||
} | ||
|
||
static Path home(@Nullable String slHome) { | ||
if (slHome != null) { | ||
return Paths.get(slHome); | ||
} | ||
return Paths.get(System.getProperty("user.home")).resolve(".sonarlint"); | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
.../commons/src/test/java/org/sonarsource/sonarlint/core/commons/SonarLintUserHomeTests.java
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,39 @@ | ||
/* | ||
* SonarLint Core - Commons | ||
* Copyright (C) 2016-2025 SonarSource SA | ||
* mailto:info AT sonarsource DOT com | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 3 of the License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this program; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
*/ | ||
package org.sonarsource.sonarlint.core.commons; | ||
|
||
import java.nio.file.Paths; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
class SonarLintUserHomeTests { | ||
|
||
@Test | ||
void env_setting_should_override_default_home() { | ||
var customHome = "/custom/home"; | ||
assertThat(SonarLintUserHome.home(customHome)).isEqualTo(Paths.get(customHome)); | ||
} | ||
|
||
@Test | ||
void default_home_should_be_in_user_home() { | ||
assertThat(SonarLintUserHome.get()).isEqualTo(Paths.get(System.getProperty("user.home")).resolve(".sonarlint")); | ||
} | ||
} |
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