2020-02-09 22:30:02 +00:00
|
|
|
package s3api
|
|
|
|
|
|
|
|
import (
|
2020-12-07 08:29:17 +00:00
|
|
|
. "github.com/chrislusf/seaweedfs/weed/s3api/s3_constants"
|
2020-02-09 22:30:02 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/golang/protobuf/jsonpb"
|
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/iam_pb"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestIdentityListFileFormat(t *testing.T) {
|
|
|
|
|
2020-02-17 20:31:59 +00:00
|
|
|
s3ApiConfiguration := &iam_pb.S3ApiConfiguration{}
|
2020-02-09 22:30:02 +00:00
|
|
|
|
|
|
|
identity1 := &iam_pb.Identity{
|
|
|
|
Name: "some_name",
|
|
|
|
Credentials: []*iam_pb.Credential{
|
|
|
|
{
|
|
|
|
AccessKey: "some_access_key1",
|
|
|
|
SecretKey: "some_secret_key2",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Actions: []string{
|
|
|
|
ACTION_ADMIN,
|
|
|
|
ACTION_READ,
|
|
|
|
ACTION_WRITE,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
identity2 := &iam_pb.Identity{
|
|
|
|
Name: "some_read_only_user",
|
|
|
|
Credentials: []*iam_pb.Credential{
|
|
|
|
{
|
|
|
|
AccessKey: "some_access_key1",
|
|
|
|
SecretKey: "some_secret_key1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Actions: []string{
|
|
|
|
ACTION_READ,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
identity3 := &iam_pb.Identity{
|
|
|
|
Name: "some_normal_user",
|
|
|
|
Credentials: []*iam_pb.Credential{
|
|
|
|
{
|
|
|
|
AccessKey: "some_access_key2",
|
|
|
|
SecretKey: "some_secret_key2",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Actions: []string{
|
|
|
|
ACTION_READ,
|
|
|
|
ACTION_WRITE,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2020-02-17 20:31:59 +00:00
|
|
|
s3ApiConfiguration.Identities = append(s3ApiConfiguration.Identities, identity1)
|
|
|
|
s3ApiConfiguration.Identities = append(s3ApiConfiguration.Identities, identity2)
|
|
|
|
s3ApiConfiguration.Identities = append(s3ApiConfiguration.Identities, identity3)
|
2020-02-09 22:30:02 +00:00
|
|
|
|
|
|
|
m := jsonpb.Marshaler{
|
|
|
|
EmitDefaults: true,
|
|
|
|
Indent: " ",
|
|
|
|
}
|
|
|
|
|
2020-02-17 20:31:59 +00:00
|
|
|
text, _ := m.MarshalToString(s3ApiConfiguration)
|
2020-02-09 22:30:02 +00:00
|
|
|
|
|
|
|
println(text)
|
|
|
|
|
|
|
|
}
|