forked from googleapis/google-cloud-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbucket_test.rb
More file actions
1501 lines (1123 loc) · 53.4 KB
/
bucket_test.rb
File metadata and controls
1501 lines (1123 loc) · 53.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2014 Google LLC
#
# Licensed 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
#
# https://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.
require "helper"
describe Google::Cloud::Storage::Bucket, :mock_storage do
let(:bucket_hash) { random_bucket_hash }
let(:bucket_json) { bucket_hash.to_json }
let(:bucket_gapi) { Google::Apis::StorageV1::Bucket.from_json bucket_json }
let(:bucket) { Google::Cloud::Storage::Bucket.from_gapi bucket_gapi, storage.service }
let(:bucket_user_project) { Google::Cloud::Storage::Bucket.from_gapi bucket_gapi, storage.service, user_project: true }
let(:bucket_name) { "new-bucket-#{Time.now.to_i}" }
let(:bucket_url_root) { "https://www.googleapis.com/storage/v1" }
let(:bucket_url) { "#{bucket_url_root}/b/#{bucket_name}" }
let(:bucket_cors) { [{ "maxAgeSeconds" => 300,
"method" => ["*"],
"origin" => ["http://example.org", "https://example.org"],
"responseHeader" => ["X-My-Custom-Header"] }] }
let(:bucket_lifecycle) {
{
"rule" => [
{
"action" => {
"storageClass" => "NEARLINE",
"type" => "SetStorageClass"
},
"condition" => {
"age" => 32,
"matchesPrefix" => ["blah"],
"matchesSuffix" => ["bleh"]
}
}
]
}
}
let(:bucket_location) { "US" }
let(:bucket_location_type) { "multi-region" }
let(:bucket_logging_bucket) { "bucket-name-logging" }
let(:bucket_logging_prefix) { "AccessLog" }
let(:bucket_storage_class) { "STANDARD" }
let(:bucket_versioning) { true }
let(:bucket_website_main) { "index.html" }
let(:bucket_website_404) { "404.html" }
let(:bucket_requester_pays) { true }
let(:bucket_labels) { { "env" => "production", "foo" => "bar" } }
let(:bucket_autoclass_enabled) { true }
let(:bucket_autoclass_terminal_storage_class) { "NEARLINE" }
let(:generation) { 1234567890 }
let(:metageneration) { 6 }
let :bucket_complete_hash do
h = random_bucket_hash name: bucket_name, url_root: bucket_url_root,
location: bucket_location, storage_class: bucket_storage_class, versioning: bucket_versioning,
logging_bucket: bucket_logging_bucket, logging_prefix: bucket_logging_prefix, website_main: bucket_website_main,
website_404: bucket_website_404, cors: bucket_cors, requester_pays: bucket_requester_pays,
lifecycle: bucket_lifecycle, autoclass_enabled: bucket_autoclass_enabled,
autoclass_terminal_storage_class: bucket_autoclass_terminal_storage_class
h[:labels] = bucket_labels
h
end
let(:bucket_complete_json) { bucket_complete_hash.to_json }
let(:bucket_complete_gapi) { Google::Apis::StorageV1::Bucket.from_json bucket_complete_json }
let(:bucket_complete) { Google::Cloud::Storage::Bucket.from_gapi bucket_complete_gapi, storage.service }
it "knows its attributes" do
_(bucket_complete.id).must_equal bucket_complete_hash["id"]
_(bucket_complete.name).must_equal bucket_name
_(bucket_complete.created_at).must_be_within_delta bucket_complete_hash["timeCreated"].to_datetime
_(bucket_complete.api_url).must_equal bucket_url
_(bucket_complete.location).must_equal bucket_location
_(bucket_complete.location_type).must_equal bucket_location_type
_(bucket_complete.logging_bucket).must_equal bucket_logging_bucket
_(bucket_complete.logging_prefix).must_equal bucket_logging_prefix
_(bucket_complete.storage_class).must_equal bucket_storage_class
_(bucket_complete.versioning?).must_equal bucket_versioning
_(bucket_complete.website_main).must_equal bucket_website_main
_(bucket_complete.website_404).must_equal bucket_website_404
_(bucket_complete.requester_pays).must_equal bucket_requester_pays
end
it "knows its labels" do
# mostly emtpy bucket has a labels hash
_(bucket.labels).must_equal Hash.new
# a complete bucket has a labels hash with the correct values
_(bucket_complete.labels).must_equal bucket_labels
end
it "knows its autoclass config" do
# a complete bucket has a autoclass config enabled
_(bucket_complete.autoclass_enabled).must_equal bucket_autoclass_enabled
_(bucket_complete.autoclass_terminal_storage_class).must_equal bucket_autoclass_terminal_storage_class
end
it "returns frozen cors" do
bucket_complete.cors.each do |cors|
_(cors).must_be_kind_of Google::Cloud::Storage::Bucket::Cors::Rule
_(cors.frozen?).must_equal true
end
_(bucket_complete.cors.frozen?).must_equal true
end
it "returns frozen lifecycle (Object Lifecycle Management)" do
bucket_complete.lifecycle.each do |r|
_(r).must_be_kind_of Google::Cloud::Storage::Bucket::Lifecycle::Rule
_(r.frozen?).must_equal true
end
_(bucket_complete.lifecycle.frozen?).must_equal true
end
it "can delete itself" do
mock = Minitest::Mock.new
mock.expect :delete_bucket, nil, [bucket.name], **delete_bucket_args
bucket.service.mocked_service = mock
bucket.delete
mock.verify
end
it "can delete itself with if_metageneration_match set to a metageneration" do
mock = Minitest::Mock.new
mock.expect :delete_bucket, nil, [bucket.name], **delete_bucket_args(if_metageneration_match: metageneration)
bucket.service.mocked_service = mock
bucket.delete if_metageneration_match: metageneration
mock.verify
end
it "can delete itself with if_metageneration_not_match set to a metageneration" do
mock = Minitest::Mock.new
mock.expect :delete_bucket, nil, [bucket.name], **delete_bucket_args(if_metageneration_not_match: metageneration)
bucket.service.mocked_service = mock
bucket.delete if_metageneration_not_match: metageneration
mock.verify
end
it "can delete itself with user_project set to true" do
mock = Minitest::Mock.new
mock.expect :delete_bucket, nil, [bucket_user_project.name], **delete_bucket_args(user_project: "test")
bucket_user_project.service.mocked_service = mock
bucket_user_project.delete
mock.verify
end
it "creates a file" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world"
tmpfile.rewind
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi], **insert_object_args(name: new_file_name, upload_source: tmpfile, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file tmpfile, new_file_name
mock.verify
end
end
it "creates a file with upload_file alias" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world"
tmpfile.rewind
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi], **insert_object_args(name: new_file_name, upload_source: tmpfile, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.upload_file tmpfile, new_file_name
mock.verify
end
end
it "creates a file with new_file alias" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world"
tmpfile.rewind
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi], **insert_object_args(name: new_file_name, upload_source: tmpfile, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.new_file tmpfile, new_file_name
mock.verify
end
end
it "creates a file with a StringIO for file contents" do
new_file_name = random_file_path
new_file_contents = StringIO.new "Hello world"
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi], **insert_object_args(name: new_file_name, upload_source: new_file_contents, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file new_file_contents, new_file_name
mock.verify
end
it "creates a file with a StringIO and checksum: :md5" do
new_file_name = random_file_path
new_file_contents = StringIO.new "Hello world"
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi(md5: "PiWWCnnbxptnTNTsZ6csYg==")], **insert_object_args(name: new_file_name, upload_source: new_file_contents, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file new_file_contents, new_file_name, checksum: :md5
mock.verify
end
it "creates a file with a StringIO and checksum: :crc32c" do
new_file_name = random_file_path
new_file_contents = StringIO.new "Hello world"
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi(crc32c: "crUfeA==")], **insert_object_args(name: new_file_name, upload_source: new_file_contents, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file new_file_contents, new_file_name, checksum: :crc32c
mock.verify
end
it "raises when create_file is called with both 'checksum: :md5' and 'md5'" do
new_file_name = random_file_path
new_file_contents = StringIO.new "Hello world"
expect do
bucket.create_file new_file_contents, new_file_name, checksum: :md5, md5: "PiWWCnnbxptnTNTsZ6csYg=="
end.must_raise ArgumentError
end
it "raises when create_file is called with both 'checksum: :crc32c' and 'crc32c'" do
new_file_name = random_file_path
new_file_contents = StringIO.new "Hello world"
expect do
bucket.create_file new_file_contents, new_file_name, checksum: :crc32c, crc32c: "crUfeA=="
end.must_raise ArgumentError
end
it "raises when creating a file with a StringIO and missing path" do
new_file_contents = StringIO.new "Hello world"
err = expect { bucket.create_file new_file_contents }.must_raise ArgumentError
_(err.message).must_equal "must provide path"
end
it "creates a file with predefined acl" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world"
tmpfile.rewind
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi], **insert_object_args(name: new_file_name, predefined_acl: "private", upload_source: tmpfile, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file tmpfile, new_file_name, acl: "private"
mock.verify
end
end
it "creates a file with predefined acl alias" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world"
tmpfile.rewind
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi], **insert_object_args(name: new_file_name, predefined_acl: "publicRead", upload_source: tmpfile, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file tmpfile, new_file_name, acl: :public
mock.verify
end
end
it "creates a file with checksum: :md5" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world!"
tmpfile.rewind
md5 = Google::Cloud::Storage::File::Verifier.md5_for tmpfile
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi(md5: md5)], **insert_object_args(name: new_file_name, upload_source: tmpfile, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file tmpfile, new_file_name, checksum: :md5
mock.verify
end
end
it "creates a file with checksum: :crc32c" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world!"
tmpfile.rewind
crc32c = Google::Cloud::Storage::File::Verifier.crc32c_for tmpfile
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi(crc32c: crc32c)], **insert_object_args(name: new_file_name, upload_source: tmpfile, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file tmpfile, new_file_name, checksum: :crc32c
mock.verify
end
end
it "creates a file with md5" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world!"
tmpfile.rewind
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi(md5: "hvsmnRkNLIX24EaM7KQqIA==")], **insert_object_args(name: new_file_name, upload_source: tmpfile, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file tmpfile, new_file_name, md5: "hvsmnRkNLIX24EaM7KQqIA=="
mock.verify
end
end
it "creates a file with crc32c" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world!"
tmpfile.rewind
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi(crc32c: "e5jnUQ==")], **insert_object_args(name: new_file_name, upload_source: tmpfile, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file tmpfile, new_file_name, crc32c: "e5jnUQ=="
mock.verify
end
end
it "creates a file with attributes" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world"
tmpfile.rewind
options = {
cache_control: "public, max-age=3600",
content_disposition: "attachment; filename=filename.ext",
content_encoding: "gzip",
content_language: "en",
content_type: "image/png",
storage_class: "NEARLINE"
}
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi(**options)], **insert_object_args(name: new_file_name, upload_source: tmpfile, content_encoding: options[:content_encoding], content_type: options[:content_type], options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file tmpfile, new_file_name, **options
mock.verify
end
end
it "creates a file with metadata" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world"
tmpfile.rewind
metadata = {
"player" => "Bob",
score: 10
}
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi(metadata: metadata)], **insert_object_args(name: new_file_name, upload_source: tmpfile, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file tmpfile, new_file_name, metadata: metadata
mock.verify
end
end
it "creates a file with temporary_hold" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world"
tmpfile.rewind
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi(temporary_hold: true)], **insert_object_args(name: new_file_name, upload_source: tmpfile, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file tmpfile, new_file_name, temporary_hold: true
mock.verify
end
end
it "creates a file with event_based_hold" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world"
tmpfile.rewind
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi(event_based_hold: true)], **insert_object_args(name: new_file_name, upload_source: tmpfile, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file tmpfile, new_file_name, event_based_hold: true
mock.verify
end
end
it "creates a file with if_generation_match" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world"
tmpfile.rewind
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi], **insert_object_args(name: new_file_name, upload_source: tmpfile, if_generation_match: generation)
bucket.service.mocked_service = mock
bucket.create_file tmpfile, new_file_name, if_generation_match: generation
mock.verify
end
end
it "creates a file with if_generation_not_match" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world"
tmpfile.rewind
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi], **insert_object_args(name: new_file_name, upload_source: tmpfile, if_generation_not_match: generation, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file tmpfile, new_file_name, if_generation_not_match: generation
mock.verify
end
end
it "creates a file with if_metageneration_match" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world"
tmpfile.rewind
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi], **insert_object_args(name: new_file_name, upload_source: tmpfile, if_metageneration_match: metageneration, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file tmpfile, new_file_name, if_metageneration_match: metageneration
mock.verify
end
end
it "creates a file with if_metageneration_not_match" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world"
tmpfile.rewind
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi], **insert_object_args(name: new_file_name, upload_source: tmpfile, if_metageneration_not_match: metageneration, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file tmpfile, new_file_name, if_metageneration_not_match: metageneration
mock.verify
end
end
it "creates a file with user_project set to true" do
new_file_name = random_file_path
Tempfile.open ["google-cloud", ".txt"] do |tmpfile|
tmpfile.write "Hello world"
tmpfile.rewind
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket_user_project.name, new_file_name),
[bucket.name, empty_file_gapi], **insert_object_args(name: new_file_name, upload_source: tmpfile, user_project: "test", options: {retries: 0})
bucket_user_project.service.mocked_service = mock
created = bucket_user_project.create_file tmpfile, new_file_name
_(created.user_project).must_equal true
mock.verify
end
end
it "creates an empty file" do
new_file_name = random_file_path
Tempfile.create ["google-cloud", ".txt"] do |tmpfile|
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket_user_project.name, new_file_name),
[bucket.name, empty_file_gapi], **insert_object_args(name: new_file_name, upload_source: tmpfile, user_project: "test", options: {retries: 0})
bucket_user_project.service.mocked_service = mock
created = bucket_user_project.create_file tmpfile, new_file_name
_(created.user_project).must_equal true
mock.verify
end
end
it "creates an file with a StringIO" do
new_file_name = random_file_path
new_file_contents = StringIO.new
mock = Minitest::Mock.new
mock.expect :insert_object, create_file_gapi(bucket.name, new_file_name),
[bucket.name, empty_file_gapi], **insert_object_args(name: new_file_name, upload_source: new_file_contents, options: {retries: 0})
bucket.service.mocked_service = mock
bucket.create_file new_file_contents, new_file_name
mock.verify
end
it "raises when given a file that does not exist" do
bad_file_path = "/this/file/does/not/exist.ext"
refute ::File.file?(bad_file_path)
err = expect {
bucket.create_file bad_file_path
}.must_raise ArgumentError
_(err.message).must_match bad_file_path
end
it "lists files" do
num_files = 3
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(num_files),
[bucket.name], delimiter: nil, max_results: nil, page_token: nil, prefix: nil, versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket.service.mocked_service = mock
files = bucket.files
mock.verify
_(files.size).must_equal num_files
files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
end
it "lists files with find_files alias" do
num_files = 3
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(num_files),
[bucket.name], delimiter: nil, max_results: nil, page_token: nil, prefix: nil, versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket.service.mocked_service = mock
files = bucket.find_files
mock.verify
_(files.size).must_equal num_files
files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
end
it "lists files with prefix set" do
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(3, nil, ["/prefix/path1/", "/prefix/path2/"]),
[bucket.name], delimiter: nil, max_results: nil, page_token: nil, prefix: "/prefix/", versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket.service.mocked_service = mock
files = bucket.files prefix: "/prefix/"
mock.verify
_(files.count).must_equal 3
_(files.prefixes).wont_be :empty?
_(files.prefixes).must_include "/prefix/path1/"
_(files.prefixes).must_include "/prefix/path2/"
files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
end
it "lists files with delimiter set" do
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(3, nil, ["/prefix/path1/", "/prefix/path2/"]),
[bucket.name], delimiter: "/", max_results: nil, page_token: nil, prefix: nil, versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket.service.mocked_service = mock
files = bucket.files delimiter: "/"
mock.verify
_(files.count).must_equal 3
_(files.prefixes).wont_be :empty?
_(files.prefixes).must_include "/prefix/path1/"
_(files.prefixes).must_include "/prefix/path2/"
files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
end
it "lists files with folders as prefix set" do
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(3, nil, ["/prefix/path1/", "/prefix/path2/"], include_folders_as_prefixes: true),
[bucket.name], delimiter: "/", max_results: nil, page_token: nil, prefix: nil, versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket.service.mocked_service = mock
files = bucket.files delimiter: "/"
mock.verify
_(files.count).must_equal 3
_(files.prefixes).must_be_kind_of Array
_(files.prefixes).wont_be :empty?
_(files.prefixes).must_include "/prefix/path1/"
_(files.prefixes).must_include "/prefix/path2/"
files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
end
it "lists files with match_glob set" do
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(2),
[bucket.name], delimiter: nil, max_results: nil, page_token: nil, prefix: nil, versions: nil, user_project: nil, match_glob: "/foo/**/bar/", include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket.service.mocked_service = mock
files = bucket.files match_glob: "/foo/**/bar/"
mock.verify
_(files.count).must_equal 2
files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
end
it "lists files with max set" do
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(3, "next_page_token"),
[bucket.name], delimiter: nil, max_results: 3, page_token: nil, prefix: nil, versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket.service.mocked_service = mock
files = bucket.files max: 3
mock.verify
_(files.count).must_equal 3
_(files.token).wont_be :nil?
_(files.token).must_equal "next_page_token"
files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
end
it "lists files with versions set" do
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(3),
[bucket.name], delimiter: nil, max_results: nil, page_token: nil, prefix: nil, versions: true, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket.service.mocked_service = mock
files = bucket.files versions: true
mock.verify
_(files.count).must_equal 3
files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
end
it "lists files with user_project set to true" do
num_files = 3
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(num_files),
[bucket.name], delimiter: nil, max_results: nil, page_token: nil, prefix: nil, versions: nil, user_project: "test", match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket_user_project.service.mocked_service = mock
files = bucket_user_project.files
mock.verify
_(files.size).must_equal num_files
files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_equal true
end
end
it "paginates files" do
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(3, "next_page_token"),
[bucket.name], delimiter: nil, max_results: nil, page_token: nil, prefix: nil, versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
mock.expect :list_objects, list_files_gapi(2),
[bucket.name], delimiter: nil, max_results: nil, page_token: "next_page_token", prefix: nil, versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket.service.mocked_service = mock
first_files = bucket.files
second_files = bucket.files token: first_files.token
mock.verify
_(first_files.count).must_equal 3
_(first_files.token).wont_be :nil?
_(first_files.token).must_equal "next_page_token"
first_files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
_(second_files.count).must_equal 2
_(second_files.token).must_be :nil?
second_files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
end
it "paginates files with next? and next" do
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(3, "next_page_token"),
[bucket.name], delimiter: nil, max_results: nil, page_token: nil, prefix: nil, versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
mock.expect :list_objects, list_files_gapi(2),
[bucket.name], delimiter: nil, max_results: nil, page_token: "next_page_token", prefix: nil, versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket.service.mocked_service = mock
first_files = bucket.files
second_files = first_files.next
mock.verify
_(first_files.count).must_equal 3
_(first_files.next?).must_equal true
first_files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
_(second_files.count).must_equal 2
_(second_files.next?).must_equal false
second_files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
end
it "paginates files with next? and next and prefix set" do
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(3, "next_page_token"),
[bucket.name], delimiter: nil, max_results: nil, page_token: nil, prefix: "/prefix/", versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
mock.expect :list_objects, list_files_gapi(2),
[bucket.name], delimiter: nil, max_results: nil, page_token: "next_page_token", prefix: "/prefix/", versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket.service.mocked_service = mock
first_files = bucket.files prefix: "/prefix/"
second_files = first_files.next
mock.verify
_(first_files.count).must_equal 3
_(first_files.next?).must_equal true
first_files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
_(second_files.count).must_equal 2
_(second_files.next?).must_equal false
second_files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
end
it "paginates files with next? and next and delimiter set" do
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(3, "next_page_token"),
[bucket.name], delimiter: "/", max_results: nil, page_token: nil, prefix: nil, versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
mock.expect :list_objects, list_files_gapi(2),
[bucket.name], delimiter: "/", max_results: nil, page_token: "next_page_token", prefix: nil, versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket.service.mocked_service = mock
first_files = bucket.files delimiter: "/"
second_files = first_files.next
mock.verify
_(first_files.count).must_equal 3
_(first_files.next?).must_equal true
first_files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
_(second_files.count).must_equal 2
_(second_files.next?).must_equal false
second_files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
end
it "paginates files with next? and next and max set" do
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(3, "next_page_token"),
[bucket.name], delimiter: nil, max_results: 3, page_token: nil, prefix: nil, versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
mock.expect :list_objects, list_files_gapi(2),
[bucket.name], delimiter: nil, max_results: 3, page_token: "next_page_token", prefix: nil, versions: nil, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket.service.mocked_service = mock
first_files = bucket.files max: 3
second_files = first_files.next
mock.verify
_(first_files.count).must_equal 3
_(first_files.next?).must_equal true
first_files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
_(second_files.count).must_equal 2
_(second_files.next?).must_equal false
second_files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
end
it "paginates files with next? and next and versions set" do
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(3, "next_page_token"),
[bucket.name], delimiter: nil, max_results: nil, page_token: nil, prefix: nil, versions: true, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
mock.expect :list_objects, list_files_gapi(2),
[bucket.name], delimiter: nil, max_results: nil, page_token: "next_page_token", prefix: nil, versions: true, user_project: nil, match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket.service.mocked_service = mock
first_files = bucket.files versions: true
second_files = first_files.next
mock.verify
_(first_files.count).must_equal 3
_(first_files.next?).must_equal true
first_files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
_(second_files.count).must_equal 2
_(second_files.next?).must_equal false
second_files.each do |file|
_(file).must_be_kind_of Google::Cloud::Storage::File
_(file.user_project).must_be :nil?
end
end
it "paginates files with user_project set to true" do
mock = Minitest::Mock.new
mock.expect :list_objects, list_files_gapi(3, "next_page_token"),
[bucket.name], delimiter: nil, max_results: nil, page_token: nil, prefix: nil, versions: nil, user_project: "test", match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
mock.expect :list_objects, list_files_gapi(2),
[bucket.name], delimiter: nil, max_results: nil, page_token: "next_page_token", prefix: nil, versions: nil, user_project: "test", match_glob: nil, include_folders_as_prefixes: nil, soft_deleted: nil, options: {}
bucket_user_project.service.mocked_service = mock