File: cust_integ_endpoint_test.go

package info (click to toggle)
golang-github-aws-aws-sdk-go 1.44.133-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-proposed-updates
  • size: 245,296 kB
  • sloc: makefile: 120
file content (23 lines) | stat: -rw-r--r-- 534 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//go:build integration
// +build integration

package s3_test

import (
	"testing"
)

func TestInteg_AccessPoint_WriteToObject(t *testing.T) {
	testWriteToObject(t, integMetadata.AccessPoints.Source.ARN)
}

func TestInteg_AccessPoint_PresignedGetPut(t *testing.T) {
	testPresignedGetPut(t, integMetadata.AccessPoints.Source.ARN)
}

func TestInteg_AccessPoint_CopyObject(t *testing.T) {
	t.Skip("API does not support access point")
	testCopyObject(t,
		integMetadata.AccessPoints.Source.ARN,
		integMetadata.AccessPoints.Target.ARN)
}