Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/aws/s3_client_spec.rb')
-rw-r--r--spec/lib/aws/s3_client_spec.rb33
1 files changed, 33 insertions, 0 deletions
diff --git a/spec/lib/aws/s3_client_spec.rb b/spec/lib/aws/s3_client_spec.rb
new file mode 100644
index 00000000000..0e50eb4d910
--- /dev/null
+++ b/spec/lib/aws/s3_client_spec.rb
@@ -0,0 +1,33 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Aws::S3Client, feature_category: :audit_events do
+ let_it_be(:region) { 'eu-west-1' }
+ let_it_be(:access_key_id) { 'AKIARANDOM123' }
+ let_it_be(:secret_access_key) { 'TOPSECRET/XYZ' }
+
+ let(:s3_client) { described_class.new(access_key_id, secret_access_key, region) }
+
+ describe '#upload_object' do
+ let(:key) { 'file.txt' }
+ let(:bucket_name) { 'gitlab-audit-logs' }
+ let(:body) { 'content' }
+ let(:content_type) { 'Text/plain' }
+
+ it 'calls put_object with correct params' do
+ allow_next_instance_of(Aws::S3::Client) do |s3_client|
+ expect(s3_client).to receive(:put_object).with(
+ {
+ key: key,
+ bucket: bucket_name,
+ body: body,
+ content_type: 'Text/plain'
+ }
+ )
+ end
+
+ s3_client.upload_object(key, bucket_name, body, content_type)
+ end
+ end
+end