| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,94 @@ | ||
| package registry | ||
|
|
||
| import ( | ||
| "context" | ||
| "errors" | ||
| "io/ioutil" | ||
| "net/url" | ||
| "strings" | ||
| "testing" | ||
| "time" | ||
|
|
||
| "github.com/aws/aws-sdk-go-v2/service/s3" | ||
| ) | ||
|
|
||
| func TestGetOnlineFeaturesS3Registry(t *testing.T) { | ||
| mockS3Client := &MockS3Client{ | ||
| GetObjectFn: func(ctx context.Context, params *s3.GetObjectInput, optFns ...func(*s3.Options)) (*s3.GetObjectOutput, error) { | ||
| return &s3.GetObjectOutput{ | ||
| Body: ioutil.NopCloser(strings.NewReader("mock data")), | ||
| }, nil | ||
| }, | ||
| DeleteObjectFn: func(ctx context.Context, params *s3.DeleteObjectInput, optFns ...func(*s3.Options)) (*s3.DeleteObjectOutput, error) { | ||
| return &s3.DeleteObjectOutput{}, nil | ||
| }, | ||
| } | ||
|
|
||
| tests := []struct { | ||
| name string | ||
| config *RepoConfig | ||
| }{ | ||
| { | ||
| name: "redis with simple features", | ||
| config: &RepoConfig{ | ||
| Project: "feature_repo", | ||
| Registry: map[string]interface{}{ | ||
| "path": "s3://test-bucket/path/to/registry.db", | ||
| }, | ||
| Provider: "aws", | ||
| }, | ||
| }, | ||
| } | ||
| for _, test := range tests { | ||
| registryConfig, err := test.config.GetRegistryConfig() | ||
| if err != nil { | ||
| t.Errorf("Error getting registry config. msg: %s", err.Error()) | ||
| } | ||
| r := &Registry{ | ||
| project: test.config.Project, | ||
| cachedRegistryProtoTtl: time.Duration(registryConfig.CacheTtlSeconds) * time.Second, | ||
| } | ||
| _ = registryConfig.RegistryStoreType | ||
| registryPath := registryConfig.Path | ||
| uri, err := url.Parse(registryPath) | ||
| if err != nil { | ||
| t.Errorf("Error parsing registry path. msg: %s", err.Error()) | ||
| } | ||
| if registryStoreType, ok := REGISTRY_STORE_CLASS_FOR_SCHEME[uri.Scheme]; ok { | ||
| switch registryStoreType { | ||
| case "S3RegistryStore": | ||
| registryStore := &S3RegistryStore{ | ||
| filePath: registryConfig.Path, | ||
| s3Client: mockS3Client, | ||
| } | ||
| r.registryStore = registryStore | ||
| err := r.InitializeRegistry() | ||
| if err != nil { | ||
| t.Errorf("Error initializing registry. msg: %s. registry path=%q", err.Error(), registryPath) | ||
| } | ||
| default: | ||
| t.Errorf("Only S3RegistryStore is supported on this testing. got=%s", registryStoreType) | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| // MockS3Client is mock client for testing s3 registry store | ||
| type MockS3Client struct { | ||
| GetObjectFn func(ctx context.Context, params *s3.GetObjectInput, optFns ...func(*s3.Options)) (*s3.GetObjectOutput, error) | ||
| DeleteObjectFn func(ctx context.Context, params *s3.DeleteObjectInput, optFns ...func(*s3.Options)) (*s3.DeleteObjectOutput, error) | ||
| } | ||
|
|
||
| func (m *MockS3Client) GetObject(ctx context.Context, params *s3.GetObjectInput, optFns ...func(*s3.Options)) (*s3.GetObjectOutput, error) { | ||
| if m.GetObjectFn != nil { | ||
| return m.GetObjectFn(ctx, params) | ||
| } | ||
| return nil, errors.New("not implemented") | ||
| } | ||
|
|
||
| func (m *MockS3Client) DeleteObject(ctx context.Context, params *s3.DeleteObjectInput, optFns ...func(*s3.Options)) (*s3.DeleteObjectOutput, error) { | ||
| if m.DeleteObjectFn != nil { | ||
| return m.DeleteObjectFn(ctx, params) | ||
| } | ||
| return nil, errors.New("not implemented") | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,109 @@ | ||
| package registry | ||
|
|
||
| import ( | ||
| "context" | ||
| "errors" | ||
| "io/ioutil" | ||
| "strings" | ||
| "time" | ||
|
|
||
| "github.com/aws/aws-sdk-go-v2/aws" | ||
| awsConfig "github.com/aws/aws-sdk-go-v2/config" | ||
| "github.com/aws/aws-sdk-go-v2/service/s3" | ||
| "github.com/feast-dev/feast/go/protos/feast/core" | ||
|
|
||
| "google.golang.org/protobuf/proto" | ||
| ) | ||
|
|
||
| // S3ClientInterface define interface of s3.Client for making mocking s3 client and testing it | ||
| type S3ClientInterface interface { | ||
| GetObject(ctx context.Context, params *s3.GetObjectInput, optFns ...func(*s3.Options)) (*s3.GetObjectOutput, error) | ||
| DeleteObject(ctx context.Context, params *s3.DeleteObjectInput, optFns ...func(*s3.Options)) (*s3.DeleteObjectOutput, error) | ||
| } | ||
|
|
||
| // A S3RegistryStore is a S3 object storage-based implementation of the RegistryStore interface | ||
| type S3RegistryStore struct { | ||
| filePath string | ||
| s3Client S3ClientInterface | ||
| } | ||
|
|
||
| // NewS3RegistryStore creates a S3RegistryStore with the given configuration | ||
| func NewS3RegistryStore(config *RegistryConfig, repoPath string) *S3RegistryStore { | ||
| var lr S3RegistryStore | ||
| ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second) | ||
| defer cancel() | ||
|
|
||
| cfg, err := awsConfig.LoadDefaultConfig(ctx) | ||
| if err != nil { | ||
| lr = S3RegistryStore{ | ||
| filePath: config.Path, | ||
| } | ||
| } else { | ||
| lr = S3RegistryStore{ | ||
| filePath: config.Path, | ||
| s3Client: s3.NewFromConfig(cfg), | ||
| } | ||
| } | ||
| return &lr | ||
| } | ||
|
|
||
| func (r *S3RegistryStore) GetRegistryProto() (*core.Registry, error) { | ||
| bucket, key, err := r.parseS3Path() | ||
| if err != nil { | ||
| return nil, err | ||
| } | ||
|
|
||
| ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second) | ||
| defer cancel() | ||
| output, err := r.s3Client.GetObject(ctx, | ||
| &s3.GetObjectInput{ | ||
| Bucket: aws.String(bucket), | ||
| Key: aws.String(key), | ||
| }) | ||
| if err != nil { | ||
| panic(err) | ||
|
Comment thread
Copy link
Copy Markdown
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityIf I don't apply panic, a failed test case seems to normal.
Sorry, something went wrong.
franciscojavierarceo reacted with thumbs up emoji
All reactions
|
||
| } | ||
| defer output.Body.Close() | ||
|
|
||
| data, err := ioutil.ReadAll(output.Body) | ||
| if err != nil { | ||
| return nil, err | ||
| } | ||
|
|
||
| registry := &core.Registry{} | ||
| if err := proto.Unmarshal(data, registry); err != nil { | ||
| return nil, err | ||
| } | ||
| return registry, nil | ||
| } | ||
|
|
||
| func (r *S3RegistryStore) UpdateRegistryProto(rp *core.Registry) error { | ||
| return errors.New("not implemented in S3RegistryStore") | ||
| } | ||
|
|
||
| func (r *S3RegistryStore) Teardown() error { | ||
| bucket, key, err := r.parseS3Path() | ||
| if err != nil { | ||
| return err | ||
| } | ||
| ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second) | ||
| defer cancel() | ||
| _, err = r.s3Client.DeleteObject(ctx, | ||
| &s3.DeleteObjectInput{ | ||
| Bucket: aws.String(bucket), | ||
| Key: aws.String(key), | ||
| }) | ||
| if err != nil { | ||
| panic(err) | ||
|
Comment thread
Copy link
Copy Markdown
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityIf I don't apply panic, a failed test case seems to normal.
Sorry, something went wrong.
All reactions
|
||
| } | ||
| return nil | ||
| } | ||
|
|
||
| func (r *S3RegistryStore) parseS3Path() (string, string, error) { | ||
| path := strings.TrimPrefix(r.filePath, "s3://") | ||
| parts := strings.SplitN(path, "/", 2) | ||
| if len(parts) != 2 { | ||
| return "", "", errors.New("invalid S3 file path format") | ||
| } | ||
| return parts[0], parts[1], nil | ||
| } | ||
| Back | FazBrowse Home | New Git URL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityIn linux based arm64 architecture platform, output of uname -m command is aarch64. If this if-statement doesn't exist, PB_ARCH value is aarch64 and this cause error when downloading protobuf release download. Because arm architecture name of protobuf release file name is aarch_64 not aarch64. please refer below link
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.