-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aliyun oss connector support v4 signature
- Loading branch information
Showing
5 changed files
with
142 additions
and
1 deletion.
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
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
107 changes: 107 additions & 0 deletions
107
...s/hadoop-aliyun/src/test/java/org/apache/hadoop/fs/aliyun/oss/ITAliyunOSSSignatureV4.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,107 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you 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 org.apache.hadoop.fs.aliyun.oss; | ||
|
||
import org.apache.hadoop.conf.Configuration; | ||
import org.apache.hadoop.fs.FileAlreadyExistsException; | ||
import org.apache.hadoop.fs.FileStatus; | ||
import org.apache.hadoop.fs.FileSystem; | ||
import org.apache.hadoop.fs.FileSystemContractBaseTest; | ||
import org.apache.hadoop.fs.Path; | ||
import org.apache.hadoop.fs.FSDataOutputStream; | ||
import static org.apache.hadoop.fs.contract.ContractTestUtils.dataset; | ||
import static org.apache.hadoop.fs.contract.ContractTestUtils.createFile; | ||
|
||
import org.apache.hadoop.security.UserGroupInformation; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
import java.io.FileNotFoundException; | ||
import java.io.IOException; | ||
import java.net.URI; | ||
import java.util.Arrays; | ||
|
||
import static org.junit.Assert.assertFalse; | ||
import static org.junit.Assert.assertTrue; | ||
import static org.junit.Assert.fail; | ||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assume.assumeFalse; | ||
import static org.junit.Assume.assumeNotNull; | ||
import static org.junit.Assume.assumeTrue; | ||
|
||
import static org.apache.hadoop.fs.aliyun.oss.Constants.SIGNATURE_VERSION_KEY; | ||
import static org.apache.hadoop.fs.aliyun.oss.Constants.REGION_KEY; | ||
|
||
/** | ||
* Tests Aliyun OSS system. | ||
*/ | ||
public class ITAliyunOSSSignatureV4 { | ||
private static final Logger LOG = LoggerFactory.getLogger(ITAliyunOSSSignatureV4.class); | ||
private Configuration conf; | ||
private URI testURI; | ||
private Path testFile = new Path("ITAliyunOSSSignatureV4/atestr"); | ||
|
||
@Before | ||
public void setUp() throws Exception { | ||
conf = new Configuration(); | ||
String bucketUri = conf.get("test.fs.oss.name"); | ||
LOG.debug("bucketUri={}", bucketUri); | ||
testURI = URI.create(bucketUri); | ||
} | ||
|
||
@Test | ||
public void testV4() throws IOException { | ||
conf.set(SIGNATURE_VERSION_KEY, "V4"); | ||
conf.set(REGION_KEY, "cn-hongkong"); | ||
AliyunOSSFileSystem fs = new AliyunOSSFileSystem(); | ||
fs.initialize(testURI, conf); | ||
assumeNotNull(fs); | ||
|
||
createFile(fs, testFile, true, dataset(256, 0, 255)); | ||
FileStatus status = fs.getFileStatus(testFile); | ||
fs.delete(testFile); | ||
fs.close(); | ||
} | ||
|
||
@Test | ||
public void testDefaultSignatureVersion() throws IOException { | ||
AliyunOSSFileSystem fs = new AliyunOSSFileSystem(); | ||
fs.initialize(testURI, conf); | ||
assumeNotNull(fs); | ||
|
||
Path testFile = new Path("/test/atestr"); | ||
createFile(fs, testFile, true, dataset(256, 0, 255)); | ||
FileStatus status = fs.getFileStatus(testFile); | ||
fs.delete(testFile); | ||
fs.close(); | ||
} | ||
|
||
@Test | ||
public void testV4WithoutRegion() throws IOException { | ||
conf.set(SIGNATURE_VERSION_KEY, "V4"); | ||
AliyunOSSFileSystem fs = new AliyunOSSFileSystem(); | ||
try { | ||
fs.initialize(testURI, conf); | ||
} catch (IllegalArgumentException e) { | ||
LOG.warn("use V4 , but do not set region, get exception={}", e); | ||
assertEquals("se V4 , but do not set region", e.getMessage(), "SignVersion is V4 but region is empty"); | ||
} | ||
} | ||
} |
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