-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Develop support ram info switch (#12382)
* add new property to support agent situation. * for checkstyle. * Upgrade cheery pick ut to junit5. * add ignored lefthook.yml. * add ignored lefthook.yml.
- Loading branch information
1 parent
ed7bd03
commit ad83ff0
Showing
8 changed files
with
147 additions
and
4 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -18,3 +18,4 @@ test/logs | |
derby.log | ||
yarn.lock | ||
.flattened-pom.xml | ||
lefthook.yml |
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
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
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
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
58 changes: 58 additions & 0 deletions
58
client/src/main/java/com/alibaba/nacos/client/auth/ram/utils/RamUtil.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,58 @@ | ||
/* | ||
* Copyright 1999-2023 Alibaba Group Holding Ltd. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.alibaba.nacos.client.auth.ram.utils; | ||
|
||
import com.alibaba.nacos.api.PropertyKeyConst; | ||
import com.alibaba.nacos.api.SystemPropertyKeyConst; | ||
import com.alibaba.nacos.api.common.Constants; | ||
import com.alibaba.nacos.common.utils.StringUtils; | ||
|
||
import java.util.Properties; | ||
|
||
/** | ||
* Util to get ram info, such as AK, SK and RAM role. | ||
* | ||
* @author xiweng.yy | ||
*/ | ||
public class RamUtil { | ||
|
||
public static String getAccessKey(Properties properties) { | ||
boolean isUseRamInfoParsing = Boolean.parseBoolean(properties | ||
.getProperty(PropertyKeyConst.IS_USE_RAM_INFO_PARSING, | ||
System.getProperty(SystemPropertyKeyConst.IS_USE_RAM_INFO_PARSING, | ||
Constants.DEFAULT_USE_RAM_INFO_PARSING))); | ||
|
||
String result = properties.getProperty(PropertyKeyConst.ACCESS_KEY); | ||
if (isUseRamInfoParsing && StringUtils.isBlank(result)) { | ||
result = SpasAdapter.getAk(); | ||
} | ||
return result; | ||
} | ||
|
||
public static String getSecretKey(Properties properties) { | ||
boolean isUseRamInfoParsing = Boolean.parseBoolean(properties | ||
.getProperty(PropertyKeyConst.IS_USE_RAM_INFO_PARSING, | ||
System.getProperty(SystemPropertyKeyConst.IS_USE_RAM_INFO_PARSING, | ||
Constants.DEFAULT_USE_RAM_INFO_PARSING))); | ||
|
||
String result = properties.getProperty(PropertyKeyConst.SECRET_KEY); | ||
if (isUseRamInfoParsing && StringUtils.isBlank(result)) { | ||
result = SpasAdapter.getSk(); | ||
} | ||
return result; | ||
} | ||
} |
69 changes: 69 additions & 0 deletions
69
client/src/test/java/com/alibaba/nacos/client/auth/ram/utils/RamUtilTest.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,69 @@ | ||
/* | ||
* Copyright 1999-2023 Alibaba Group Holding Ltd. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.alibaba.nacos.client.auth.ram.utils; | ||
|
||
import com.alibaba.nacos.api.PropertyKeyConst; | ||
import com.alibaba.nacos.client.auth.ram.identify.CredentialService; | ||
import com.alibaba.nacos.client.auth.ram.identify.Credentials; | ||
import org.junit.jupiter.api.AfterEach; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.util.Properties; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.junit.jupiter.api.Assertions.assertNull; | ||
|
||
public class RamUtilTest { | ||
|
||
private Properties properties; | ||
|
||
@BeforeEach | ||
public void setUp() throws Exception { | ||
SpasAdapter.freeCredentialInstance(); | ||
Credentials credentials = new Credentials("spasAk", "spasSk", "spasNamespaceId"); | ||
CredentialService.getInstance().setStaticCredential(credentials); | ||
properties = new Properties(); | ||
properties.setProperty(PropertyKeyConst.ACCESS_KEY, "userAk"); | ||
properties.setProperty(PropertyKeyConst.SECRET_KEY, "userSk"); | ||
} | ||
|
||
@AfterEach | ||
public void tearDown() throws Exception { | ||
SpasAdapter.freeCredentialInstance(); | ||
} | ||
|
||
@Test | ||
public void testGetAccessKeyWithUserAkSk() { | ||
assertEquals("userAk", RamUtil.getAccessKey(properties)); | ||
assertEquals("userSk", RamUtil.getSecretKey(properties)); | ||
} | ||
|
||
@Test | ||
public void testGetAccessKeyWithSpasAkSk() { | ||
assertEquals("spasAk", RamUtil.getAccessKey(new Properties())); | ||
assertEquals("spasSk", RamUtil.getSecretKey(new Properties())); | ||
} | ||
|
||
@Test | ||
public void testGetAccessKeyWithoutSpasAkSk() { | ||
Properties properties1 = new Properties(); | ||
properties1.setProperty(PropertyKeyConst.IS_USE_RAM_INFO_PARSING, "false"); | ||
assertNull(RamUtil.getAccessKey(properties1)); | ||
assertNull(RamUtil.getSecretKey(properties1)); | ||
} | ||
} |
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