abizvn-media 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/serializers/abizvn/media/album_serializer.rb +25 -0
- data/app/serializers/abizvn/media/image_serializer.rb +21 -0
- data/app/serializers/abizvn/media/video_serializer.rb +21 -0
- data/lib/abizvn/media/version.rb +5 -5
- data/spec/factories/abizvn/general/general_settings.rb +9 -0
- data/spec/factories/abizvn/media/albums.rb +8 -0
- data/spec/factories/abizvn/media/images.rb +11 -0
- data/spec/factories/abizvn/media/videos.rb +11 -0
- data/spec/models/abizvn/media/album_spec.rb +38 -0
- data/spec/models/abizvn/media/image_spec.rb +79 -0
- data/spec/models/abizvn/media/video_spec.rb +67 -0
- data/spec/rails_helper.rb +85 -0
- data/spec/serializers/abizvn/media/album_serializer_spec.rb +19 -0
- data/spec/serializers/abizvn/media/image_serializer_spec.rb +13 -0
- data/spec/serializers/abizvn/media/video_serializer_spec.rb +13 -0
- data/spec/spec_helper.rb +94 -0
- data/spec/support/general_validation_helpers.rb +24 -0
- data/spec/support/media_validation_helpers.rb +98 -0
- metadata +51 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e900da9e2e8b53a81200f442b361cdf968b5f25e9ff6c7c9d3d1a322e7e5c99
|
4
|
+
data.tar.gz: 98b6b77e0d7d9734146111dd22842b2dbc6e624c8b0e172c4d169818f621333e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd2353340d58419f2af7b23d32f8d9244929b29b8cf3109e60183d01a281edddd5f114ed6591d0c66a9429c8259e49d0af856a49899f12918e0ca8c5372d88e8
|
7
|
+
data.tar.gz: ce414dc8621aa96f7549469878cf42e6fbba54214fa8bebde06f7e644be8bba40517520e53bb413f5a326fba09341e46672f3e83c2080af9f64cadec662a8b77
|
@@ -0,0 +1,25 @@
|
|
1
|
+
module Abizvn
|
2
|
+
module Media
|
3
|
+
class AlbumSerializer
|
4
|
+
include JSONAPI::Serializer
|
5
|
+
|
6
|
+
attributes :id, :title, :description, :updated_at
|
7
|
+
|
8
|
+
attribute :status do |entity|
|
9
|
+
Abizvn::General::GeneralSettingLiteSerializer.new(entity.status).serializable_hash[:data][:attributes]
|
10
|
+
end
|
11
|
+
|
12
|
+
attribute :images do |entity|
|
13
|
+
entity.images.map do |image|
|
14
|
+
ImageSerializer.new(image).serializable_hash[:data][:attributes]
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
attribute :videos do |entity|
|
19
|
+
entity.videos.map do |video|
|
20
|
+
VideoSerializer.new(video).serializable_hash[:data][:attributes]
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module Abizvn
|
2
|
+
module Media
|
3
|
+
class ImageSerializer
|
4
|
+
include JSONAPI::Serializer
|
5
|
+
|
6
|
+
attributes :id, :description, :updated_at
|
7
|
+
|
8
|
+
attribute :image_url do |entity|
|
9
|
+
if entity.link.present?
|
10
|
+
entity.link
|
11
|
+
elsif entity.image.present?
|
12
|
+
base_url = ENV['BASE_URL'] || 'http://localhost:3000'
|
13
|
+
|
14
|
+
blob_url = Rails.application.routes.url_helpers.rails_blob_url(entity.image, only_path: true)
|
15
|
+
|
16
|
+
"#{base_url}#{blob_url}"
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module Abizvn
|
2
|
+
module Media
|
3
|
+
class VideoSerializer
|
4
|
+
include JSONAPI::Serializer
|
5
|
+
|
6
|
+
attributes :id, :description, :updated_at
|
7
|
+
|
8
|
+
attribute :video_url do |entity|
|
9
|
+
if entity.link.present?
|
10
|
+
entity.link
|
11
|
+
elsif entity.video.present?
|
12
|
+
base_url = ENV['BASE_URL'] || 'http://localhost:3000'
|
13
|
+
|
14
|
+
blob_url = Rails.application.routes.url_helpers.rails_blob_url(entity.video, only_path: true)
|
15
|
+
|
16
|
+
"#{base_url}#{blob_url}"
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
data/lib/abizvn/media/version.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
module Abizvn
|
2
|
-
module Media
|
3
|
-
VERSION = "0.1.
|
4
|
-
end
|
5
|
-
end
|
1
|
+
module Abizvn
|
2
|
+
module Media
|
3
|
+
VERSION = "0.1.2"
|
4
|
+
end
|
5
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
FactoryBot.define do
|
2
|
+
factory :image, class: 'Abizvn::Media::Image' do
|
3
|
+
image { Rack::Test::UploadedFile.new(Rails.root.join('files', 'small.png'), 'image/png') }
|
4
|
+
sequence(:description) { |n| "Description of image #{n}" }
|
5
|
+
|
6
|
+
trait :linked_image do
|
7
|
+
link { 'https://file-examples.com/wp-content/storage/2017/10/file_example_PNG_3MB.png' }
|
8
|
+
sequence(:description) { |n| "Description of large image #{n}" }
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
FactoryBot.define do
|
2
|
+
factory :video, class: 'Abizvn::Media::Video' do
|
3
|
+
video { Rack::Test::UploadedFile.new(Rails.root.join('files', 'sample-5s.mp4'), 'video/mp4') }
|
4
|
+
sequence(:description) { |n| "Description of Video #{n}" }
|
5
|
+
|
6
|
+
trait :linked_video do
|
7
|
+
link { 'https://file-examples.com/wp-content/storage/2017/04/file_example_MP4_480_1_5MG.mp4' }
|
8
|
+
sequence(:description) { |n| "Description linked video #{n}" }
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require 'rails_helper'
|
2
|
+
|
3
|
+
RSpec.describe Abizvn::Media::Album, type: :model do
|
4
|
+
describe 'table name' do
|
5
|
+
it 'sets the correct table name' do
|
6
|
+
expect(described_class.table_name).to eq('media_albums')
|
7
|
+
end
|
8
|
+
end
|
9
|
+
|
10
|
+
describe 'RansackSearchable' do
|
11
|
+
it 'includes Commonbase::RansackSearchable' do
|
12
|
+
expect(described_class.included_modules).to include(Commonbase::RansackSearchable)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
describe 'attributes' do
|
17
|
+
it { should have_attribute(:title) }
|
18
|
+
it { should have_attribute(:description) }
|
19
|
+
end
|
20
|
+
|
21
|
+
describe 'validations' do
|
22
|
+
it { should validate_presence_of(:title) }
|
23
|
+
it { should validate_presence_of(:status) }
|
24
|
+
end
|
25
|
+
|
26
|
+
describe 'associations' do
|
27
|
+
it { should have_many(:album_images) }
|
28
|
+
it { should have_many(:images) }
|
29
|
+
it { should have_many(:album_videos) }
|
30
|
+
it { should have_many(:videos).through(:album_videos) }
|
31
|
+
it { should belong_to(:status).class_name('Abizvn::General::GeneralSetting') }
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'nested attributes' do
|
35
|
+
it { should accept_nested_attributes_for(:images).allow_destroy(true) }
|
36
|
+
it { should accept_nested_attributes_for(:videos).allow_destroy(true) }
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
require 'rails_helper'
|
2
|
+
|
3
|
+
RSpec.describe Abizvn::Media::Image, type: :model do
|
4
|
+
describe 'table name' do
|
5
|
+
it 'sets the correct table name' do
|
6
|
+
expect(described_class.table_name).to eq('media_images')
|
7
|
+
end
|
8
|
+
end
|
9
|
+
|
10
|
+
describe 'RansackSearchable' do
|
11
|
+
it 'includes Commonbase::RansackSearchable' do
|
12
|
+
expect(described_class.included_modules).to include(Commonbase::RansackSearchable)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
describe 'attributes' do
|
17
|
+
it { should have_attribute(:link) }
|
18
|
+
it { should have_attribute(:description) }
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "validations" do
|
22
|
+
context 'validates image' do
|
23
|
+
it 'validates content type' do
|
24
|
+
image = described_class.new
|
25
|
+
|
26
|
+
image.image.attach(
|
27
|
+
io: File.open(Rails.root.join('files', 'small.png')),
|
28
|
+
filename: 'small.png',
|
29
|
+
content_type: 'image/png'
|
30
|
+
)
|
31
|
+
expect(image).to be_valid
|
32
|
+
|
33
|
+
image.image.attach(
|
34
|
+
io: File.open(Rails.root.join('files', 'sample.txt')),
|
35
|
+
filename: 'sample.txt',
|
36
|
+
content_type: 'text/plain'
|
37
|
+
)
|
38
|
+
expect(image).not_to be_valid
|
39
|
+
expect(image.errors[:image].first).to include('has an invalid content type')
|
40
|
+
end
|
41
|
+
|
42
|
+
it 'validates size' do
|
43
|
+
large_file = Tempfile.new(['large_image', '.jpg'])
|
44
|
+
large_file.truncate(6.megabytes)
|
45
|
+
|
46
|
+
image = described_class.new
|
47
|
+
image.image.attach(
|
48
|
+
io: large_file,
|
49
|
+
filename: 'large_image.jpg',
|
50
|
+
content_type: 'image/jpeg'
|
51
|
+
)
|
52
|
+
|
53
|
+
expect(image).not_to be_valid
|
54
|
+
expect(image.errors[:image].first).to include('file size must be less than')
|
55
|
+
|
56
|
+
large_file.close
|
57
|
+
large_file.unlink
|
58
|
+
end
|
59
|
+
|
60
|
+
it 'validates link' do
|
61
|
+
image = FactoryBot.create(:image, :linked_image)
|
62
|
+
expect(image).to be_valid
|
63
|
+
end
|
64
|
+
|
65
|
+
it 'validates attached' do
|
66
|
+
image = described_class.new
|
67
|
+
expect(image).not_to be_valid
|
68
|
+
expect(image.errors[:image]).to include("can't be blank")
|
69
|
+
|
70
|
+
image.image.attach(
|
71
|
+
io: File.open(Rails.root.join('files', 'small.png')),
|
72
|
+
filename: 'small.png',
|
73
|
+
content_type: 'image/png'
|
74
|
+
)
|
75
|
+
expect(image).to be_valid
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
require 'rails_helper'
|
2
|
+
|
3
|
+
RSpec.describe Abizvn::Media::Video, type: :model do
|
4
|
+
describe 'table name' do
|
5
|
+
it 'sets the correct table name' do
|
6
|
+
expect(described_class.table_name).to eq('media_videos')
|
7
|
+
end
|
8
|
+
end
|
9
|
+
|
10
|
+
describe 'RansackSearchable' do
|
11
|
+
it 'includes Commonbase::RansackSearchable' do
|
12
|
+
expect(described_class.included_modules).to include(Commonbase::RansackSearchable)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
describe 'attributes' do
|
17
|
+
it { should have_attribute(:link) }
|
18
|
+
it { should have_attribute(:description) }
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "validations" do
|
22
|
+
context 'validates video' do
|
23
|
+
it 'validates content type' do
|
24
|
+
video = described_class.new
|
25
|
+
|
26
|
+
video.video.attach(
|
27
|
+
io: File.open(Rails.root.join('files', 'sample.txt')),
|
28
|
+
filename: 'sample.txt',
|
29
|
+
content_type: 'text/plain'
|
30
|
+
)
|
31
|
+
expect(video).not_to be_valid
|
32
|
+
expect(video.errors[:video].first).to include('has an invalid content type')
|
33
|
+
end
|
34
|
+
|
35
|
+
it 'validates size' do
|
36
|
+
large_file = Tempfile.new(['large_video', '.mp4'])
|
37
|
+
large_file.truncate(51.megabytes)
|
38
|
+
|
39
|
+
video = described_class.new
|
40
|
+
video.video.attach(
|
41
|
+
io: large_file,
|
42
|
+
filename: 'large_video.mp4',
|
43
|
+
content_type: 'video/mp4'
|
44
|
+
)
|
45
|
+
|
46
|
+
expect(video).not_to be_valid
|
47
|
+
expect(video.errors[:video].first).to include('file size must be less than')
|
48
|
+
|
49
|
+
large_file.close
|
50
|
+
large_file.unlink
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'validates attached' do
|
54
|
+
video = described_class.new
|
55
|
+
expect(video).not_to be_valid
|
56
|
+
expect(video.errors[:video]).to include("can't be blank")
|
57
|
+
|
58
|
+
video.video.attach(
|
59
|
+
io: File.open(Rails.root.join('files', 'sample-5s.mp4')),
|
60
|
+
filename: 'sample-5s.mp4',
|
61
|
+
content_type: 'video/mp4'
|
62
|
+
)
|
63
|
+
expect(video).to be_valid
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
@@ -0,0 +1,85 @@
|
|
1
|
+
# This file is copied to spec/ when you run 'rails generate rspec:install'
|
2
|
+
require 'spec_helper'
|
3
|
+
ENV['RAILS_ENV'] ||= 'test'
|
4
|
+
require_relative '../spec/dummy/config/environment'
|
5
|
+
# Prevent database truncation if the environment is production
|
6
|
+
abort("The Rails environment is running in production mode!") if Rails.env.production?
|
7
|
+
# Uncomment the line below in case you have `--require rails_helper` in the `.rspec` file
|
8
|
+
# that will avoid rails generators crashing because migrations haven't been run yet
|
9
|
+
# return unless Rails.env.test?
|
10
|
+
require 'rspec/rails'
|
11
|
+
# Add additional requires below this line. Rails is not loaded until this point!
|
12
|
+
|
13
|
+
# Requires supporting ruby files with custom matchers and macros, etc, in
|
14
|
+
# spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
|
15
|
+
# run as spec files by default. This means that files in spec/support that end
|
16
|
+
# in _spec.rb will both be required and run as specs, causing the specs to be
|
17
|
+
# run twice. It is recommended that you do not name files matching this glob to
|
18
|
+
# end with _spec.rb. You can configure this pattern with the --pattern
|
19
|
+
# option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
|
20
|
+
#
|
21
|
+
# The following line is provided for convenience purposes. It has the downside
|
22
|
+
# of increasing the boot-up time by auto-requiring all files in the support
|
23
|
+
# directory. Alternatively, in the individual `*_spec.rb` files, manually
|
24
|
+
# require only the support files necessary.
|
25
|
+
#
|
26
|
+
# Rails.root.glob('spec/support/**/*.rb').sort_by(&:to_s).each { |f| require f }
|
27
|
+
|
28
|
+
# Checks for pending migrations and applies them before tests are run.
|
29
|
+
# If you are not using ActiveRecord, you can remove these lines.
|
30
|
+
begin
|
31
|
+
ActiveRecord::Migration.maintain_test_schema!
|
32
|
+
rescue ActiveRecord::PendingMigrationError => e
|
33
|
+
abort e.to_s.strip
|
34
|
+
end
|
35
|
+
|
36
|
+
# Requires factories for testing
|
37
|
+
Dir.glob(File.join(File.dirname(__FILE__), 'factories', '**', '*.rb')).each { |file| require file }
|
38
|
+
Dir.glob(File.join(File.dirname(__FILE__), 'support', '*.rb')).each { |file| require file }
|
39
|
+
|
40
|
+
RSpec.configure do |config|
|
41
|
+
Shoulda::Matchers.configure do |shoulda_config|
|
42
|
+
shoulda_config.integrate do |with|
|
43
|
+
with.test_framework :rspec
|
44
|
+
with.library :rails
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
config.include Abizvn::Media::MediaValidationHelpers
|
49
|
+
config.include Abizvn::General::GeneralValidationHelpers
|
50
|
+
|
51
|
+
# Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
|
52
|
+
config.fixture_paths = [
|
53
|
+
Rails.root.join('spec/fixtures')
|
54
|
+
]
|
55
|
+
|
56
|
+
# If you're not using ActiveRecord, or you'd prefer not to run each of your
|
57
|
+
# examples within a transaction, remove the following line or assign false
|
58
|
+
# instead of true.
|
59
|
+
config.use_transactional_fixtures = true
|
60
|
+
|
61
|
+
# You can uncomment this line to turn off ActiveRecord support entirely.
|
62
|
+
# config.use_active_record = false
|
63
|
+
|
64
|
+
# RSpec Rails uses metadata to mix in different behaviours to your tests,
|
65
|
+
# for example enabling you to call `get` and `post` in request specs. e.g.:
|
66
|
+
#
|
67
|
+
# RSpec.describe UsersController, type: :request do
|
68
|
+
# # ...
|
69
|
+
# end
|
70
|
+
#
|
71
|
+
# The different available types are documented in the features, such as in
|
72
|
+
# https://rspec.info/features/7-1/rspec-rails
|
73
|
+
#
|
74
|
+
# You can also this infer these behaviours automatically by location, e.g.
|
75
|
+
# /spec/models would pull in the same behaviour as `type: :model` but this
|
76
|
+
# behaviour is considered legacy and will be removed in a future version.
|
77
|
+
#
|
78
|
+
# To enable this behaviour uncomment the line below.
|
79
|
+
# config.infer_spec_type_from_file_location!
|
80
|
+
|
81
|
+
# Filter lines from Rails gems in backtraces.
|
82
|
+
config.filter_rails_from_backtrace!
|
83
|
+
# arbitrary gems may also be filtered via:
|
84
|
+
# config.filter_gems_from_backtrace("gem name")
|
85
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'rails_helper'
|
2
|
+
|
3
|
+
RSpec.describe Abizvn::Media::AlbumSerializer, type: :serializer do
|
4
|
+
let(:image1) { FactoryBot.create(:image) }
|
5
|
+
let(:image2) { FactoryBot.create(:image) }
|
6
|
+
|
7
|
+
let(:video1) { FactoryBot.create(:video) }
|
8
|
+
let(:video2) { FactoryBot.create(:video) }
|
9
|
+
|
10
|
+
let(:album) { FactoryBot.create(:album, images: [image1, image2], videos: [video1, video2]) }
|
11
|
+
let(:serializer) { described_class.new(album) }
|
12
|
+
|
13
|
+
describe '#serializable_hash' do
|
14
|
+
it 'returns required attributes' do
|
15
|
+
data = serializer.serializable_hash[:data]
|
16
|
+
validate_album_serialized_data(album, data)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'rails_helper'
|
2
|
+
|
3
|
+
RSpec.describe Abizvn::Media::ImageSerializer, type: :serializer do
|
4
|
+
let(:image) { FactoryBot.create(:image) }
|
5
|
+
let(:serializer) { described_class.new(image) }
|
6
|
+
|
7
|
+
describe '#serializable_hash' do
|
8
|
+
it 'returns required attributes' do
|
9
|
+
data = serializer.serializable_hash[:data]
|
10
|
+
validate_image_serialized_data(image, data)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'rails_helper'
|
2
|
+
|
3
|
+
RSpec.describe Abizvn::Media::VideoSerializer, type: :serializer do
|
4
|
+
let(:video) { FactoryBot.create(:video) }
|
5
|
+
let(:serializer) { described_class.new(video) }
|
6
|
+
|
7
|
+
describe '#serializable_hash' do
|
8
|
+
it 'returns required attributes' do
|
9
|
+
data = serializer.serializable_hash[:data]
|
10
|
+
validate_video_serialized_data(video, data)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
# This file was generated by the `rails generate rspec:install` command. Conventionally, all
|
2
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
3
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
4
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
5
|
+
# files.
|
6
|
+
#
|
7
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
8
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
9
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
10
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
11
|
+
# a separate helper file that requires the additional dependencies and performs
|
12
|
+
# the additional setup, and require it from the spec files that actually need
|
13
|
+
# it.
|
14
|
+
#
|
15
|
+
# See https://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
16
|
+
RSpec.configure do |config|
|
17
|
+
# rspec-expectations config goes here. You can use an alternate
|
18
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
19
|
+
# assertions if you prefer.
|
20
|
+
config.expect_with :rspec do |expectations|
|
21
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
22
|
+
# and `failure_message` of custom matchers include text for helper methods
|
23
|
+
# defined using `chain`, e.g.:
|
24
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
25
|
+
# # => "be bigger than 2 and smaller than 4"
|
26
|
+
# ...rather than:
|
27
|
+
# # => "be bigger than 2"
|
28
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
29
|
+
end
|
30
|
+
|
31
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
32
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
33
|
+
config.mock_with :rspec do |mocks|
|
34
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
35
|
+
# a real object. This is generally recommended, and will default to
|
36
|
+
# `true` in RSpec 4.
|
37
|
+
mocks.verify_partial_doubles = true
|
38
|
+
end
|
39
|
+
|
40
|
+
# This option will default to `:apply_to_host_groups` in RSpec 4 (and will
|
41
|
+
# have no way to turn it off -- the option exists only for backwards
|
42
|
+
# compatibility in RSpec 3). It causes shared context metadata to be
|
43
|
+
# inherited by the metadata hash of host groups and examples, rather than
|
44
|
+
# triggering implicit auto-inclusion in groups with matching metadata.
|
45
|
+
config.shared_context_metadata_behavior = :apply_to_host_groups
|
46
|
+
|
47
|
+
# The settings below are suggested to provide a good initial experience
|
48
|
+
# with RSpec, but feel free to customize to your heart's content.
|
49
|
+
=begin
|
50
|
+
# This allows you to limit a spec run to individual examples or groups
|
51
|
+
# you care about by tagging them with `:focus` metadata. When nothing
|
52
|
+
# is tagged with `:focus`, all examples get run. RSpec also provides
|
53
|
+
# aliases for `it`, `describe`, and `context` that include `:focus`
|
54
|
+
# metadata: `fit`, `fdescribe` and `fcontext`, respectively.
|
55
|
+
config.filter_run_when_matching :focus
|
56
|
+
|
57
|
+
# Allows RSpec to persist some state between runs in order to support
|
58
|
+
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
59
|
+
# you configure your source control system to ignore this file.
|
60
|
+
config.example_status_persistence_file_path = "spec/examples.txt"
|
61
|
+
|
62
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
63
|
+
# recommended. For more details, see:
|
64
|
+
# https://rspec.info/features/3-12/rspec-core/configuration/zero-monkey-patching-mode/
|
65
|
+
config.disable_monkey_patching!
|
66
|
+
|
67
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
68
|
+
# file, and it's useful to allow more verbose output when running an
|
69
|
+
# individual spec file.
|
70
|
+
if config.files_to_run.one?
|
71
|
+
# Use the documentation formatter for detailed output,
|
72
|
+
# unless a formatter has already been configured
|
73
|
+
# (e.g. via a command-line flag).
|
74
|
+
config.default_formatter = "doc"
|
75
|
+
end
|
76
|
+
|
77
|
+
# Print the 10 slowest examples and example groups at the
|
78
|
+
# end of the spec run, to help surface which specs are running
|
79
|
+
# particularly slow.
|
80
|
+
config.profile_examples = 10
|
81
|
+
|
82
|
+
# Run specs in random order to surface order dependencies. If you find an
|
83
|
+
# order dependency and want to debug it, you can fix the order by providing
|
84
|
+
# the seed, which is printed after each run.
|
85
|
+
# --seed 1234
|
86
|
+
config.order = :random
|
87
|
+
|
88
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
89
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
90
|
+
# test failures related to randomization by passing the same `--seed` value
|
91
|
+
# as the one that triggered the failure.
|
92
|
+
Kernel.srand config.seed
|
93
|
+
=end
|
94
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
module Abizvn
|
2
|
+
module General
|
3
|
+
module GeneralValidationHelpers
|
4
|
+
def validate_general_setting_lite_serialized_data(general_setting, serialized_data)
|
5
|
+
expect(serialized_data).to have_key(:id)
|
6
|
+
expect(serialized_data).to have_key(:type)
|
7
|
+
expect(serialized_data[:id]).to eq(general_setting.id.to_s)
|
8
|
+
expect(serialized_data[:type]).to eq(:general_setting_lite)
|
9
|
+
|
10
|
+
expect(serialized_data).to have_key(:attributes)
|
11
|
+
validate_general_setting_lite_data_attributes(general_setting, serialized_data[:attributes])
|
12
|
+
end
|
13
|
+
|
14
|
+
def validate_general_setting_lite_data_attributes(general_setting, data_attributes)
|
15
|
+
expect(data_attributes).to have_key(:id)
|
16
|
+
expect(data_attributes).to have_key(:code)
|
17
|
+
expect(data_attributes).to have_key(:value)
|
18
|
+
expect(data_attributes[:id]).to eq(general_setting.id)
|
19
|
+
expect(data_attributes[:code]).to eq(general_setting.code)
|
20
|
+
expect(data_attributes[:value]).to eq(general_setting.value)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,98 @@
|
|
1
|
+
module Abizvn
|
2
|
+
module Media
|
3
|
+
module MediaValidationHelpers
|
4
|
+
def validate_album_serialized_data(album, serialized_data)
|
5
|
+
expect(serialized_data).to have_key(:id)
|
6
|
+
expect(serialized_data).to have_key(:type)
|
7
|
+
expect(serialized_data).to have_key(:attributes)
|
8
|
+
expect(serialized_data[:id]).to eq(album.id.to_s)
|
9
|
+
expect(serialized_data[:type]).to eq(:album)
|
10
|
+
|
11
|
+
validate_album_data_attributes(album, serialized_data[:attributes])
|
12
|
+
end
|
13
|
+
|
14
|
+
def validate_album_data_attributes(album, data_attributes)
|
15
|
+
expect(data_attributes).to have_key(:id)
|
16
|
+
expect(data_attributes).to have_key(:title)
|
17
|
+
expect(data_attributes).to have_key(:description)
|
18
|
+
expect(data_attributes).to have_key(:updated_at)
|
19
|
+
expect(data_attributes[:id]).to eq(album.id)
|
20
|
+
expect(data_attributes[:title]).to eq(album.title)
|
21
|
+
expect(data_attributes[:description]).to eq(album.description)
|
22
|
+
expect(data_attributes[:updated_at]).to eq(album.updated_at)
|
23
|
+
|
24
|
+
expect(data_attributes).to have_key(:status)
|
25
|
+
validate_general_setting_lite_data_attributes(album.status, data_attributes[:status])
|
26
|
+
|
27
|
+
expect(data_attributes).to have_key(:images)
|
28
|
+
validate_images_serialized_data(album.images, data_attributes[:images])
|
29
|
+
|
30
|
+
expect(data_attributes).to have_key(:videos)
|
31
|
+
validate_videos_serialized_data(album.videos, data_attributes[:videos])
|
32
|
+
end
|
33
|
+
|
34
|
+
def validate_images_serialized_data(images, serialized_data)
|
35
|
+
expect(serialized_data).to be_a(Array)
|
36
|
+
expect(serialized_data.length).to eq(images.length)
|
37
|
+
|
38
|
+
images.each_with_index do |image, index|
|
39
|
+
validate_image_data_attributes(image, serialized_data[index])
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def validate_image_serialized_data(image, serialized_data)
|
44
|
+
expect(serialized_data).to have_key(:id)
|
45
|
+
expect(serialized_data).to have_key(:type)
|
46
|
+
expect(serialized_data[:id]).to eq(image.id.to_s)
|
47
|
+
expect(serialized_data[:type]).to eq(:image)
|
48
|
+
|
49
|
+
expect(serialized_data).to have_key(:attributes)
|
50
|
+
validate_image_data_attributes(image, serialized_data[:attributes])
|
51
|
+
end
|
52
|
+
|
53
|
+
def validate_image_data_attributes(image, data_attributes)
|
54
|
+
expect(data_attributes).to have_key(:id)
|
55
|
+
expect(data_attributes).to have_key(:description)
|
56
|
+
expect(data_attributes).to have_key(:updated_at)
|
57
|
+
expect(data_attributes).to have_key(:image_url)
|
58
|
+
|
59
|
+
expect(data_attributes[:id]).to eq(image.id)
|
60
|
+
expect(data_attributes[:description]).to eq(image.description)
|
61
|
+
expect(data_attributes[:updated_at]).to eq(image.updated_at)
|
62
|
+
expect(data_attributes[:image_url].length).to be > 0
|
63
|
+
end
|
64
|
+
|
65
|
+
def validate_videos_serialized_data(videos, serialized_data)
|
66
|
+
expect(serialized_data).to be_a(Array)
|
67
|
+
expect(serialized_data.length).to eq(videos.length)
|
68
|
+
|
69
|
+
videos.each_with_index do |video, index|
|
70
|
+
validate_video_data_attributes(video, serialized_data[index])
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
def validate_video_serialized_data(video, serialized_data)
|
75
|
+
expect(serialized_data).to have_key(:id)
|
76
|
+
expect(serialized_data).to have_key(:type)
|
77
|
+
expect(serialized_data).to have_key(:attributes)
|
78
|
+
|
79
|
+
expect(serialized_data[:id]).to eq(video.id.to_s)
|
80
|
+
expect(serialized_data[:type]).to eq(:video)
|
81
|
+
|
82
|
+
validate_video_data_attributes(video, serialized_data[:attributes])
|
83
|
+
end
|
84
|
+
|
85
|
+
def validate_video_data_attributes(video, data_attributes)
|
86
|
+
expect(data_attributes).to have_key(:id)
|
87
|
+
expect(data_attributes).to have_key(:description)
|
88
|
+
expect(data_attributes).to have_key(:updated_at)
|
89
|
+
expect(data_attributes).to have_key(:video_url)
|
90
|
+
|
91
|
+
expect(data_attributes[:id]).to eq(video.id)
|
92
|
+
expect(data_attributes[:description]).to eq(video.description)
|
93
|
+
expect(data_attributes[:updated_at]).to eq(video.updated_at)
|
94
|
+
expect(data_attributes[:video_url].length).to be > 0
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: abizvn-media
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -52,20 +52,34 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '2.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: jsonapi-serializer
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '2.2'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '2.2'
|
55
69
|
- !ruby/object:Gem::Dependency
|
56
70
|
name: abizvn-general
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
58
72
|
requirements:
|
59
73
|
- - "~>"
|
60
74
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0.
|
75
|
+
version: '0.2'
|
62
76
|
type: :runtime
|
63
77
|
prerelease: false
|
64
78
|
version_requirements: !ruby/object:Gem::Requirement
|
65
79
|
requirements:
|
66
80
|
- - "~>"
|
67
81
|
- !ruby/object:Gem::Version
|
68
|
-
version: 0.
|
82
|
+
version: '0.2'
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: commonbase
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -84,58 +98,58 @@ dependencies:
|
|
84
98
|
name: rspec-rails
|
85
99
|
requirement: !ruby/object:Gem::Requirement
|
86
100
|
requirements:
|
87
|
-
- - "
|
101
|
+
- - "~>"
|
88
102
|
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
103
|
+
version: '7.0'
|
90
104
|
type: :development
|
91
105
|
prerelease: false
|
92
106
|
version_requirements: !ruby/object:Gem::Requirement
|
93
107
|
requirements:
|
94
|
-
- - "
|
108
|
+
- - "~>"
|
95
109
|
- !ruby/object:Gem::Version
|
96
|
-
version: '0'
|
110
|
+
version: '7.0'
|
97
111
|
- !ruby/object:Gem::Dependency
|
98
112
|
name: shoulda-matchers
|
99
113
|
requirement: !ruby/object:Gem::Requirement
|
100
114
|
requirements:
|
101
|
-
- - "
|
115
|
+
- - "~>"
|
102
116
|
- !ruby/object:Gem::Version
|
103
|
-
version: '
|
117
|
+
version: '6.2'
|
104
118
|
type: :development
|
105
119
|
prerelease: false
|
106
120
|
version_requirements: !ruby/object:Gem::Requirement
|
107
121
|
requirements:
|
108
|
-
- - "
|
122
|
+
- - "~>"
|
109
123
|
- !ruby/object:Gem::Version
|
110
|
-
version: '
|
124
|
+
version: '6.2'
|
111
125
|
- !ruby/object:Gem::Dependency
|
112
126
|
name: factory_bot_rails
|
113
127
|
requirement: !ruby/object:Gem::Requirement
|
114
128
|
requirements:
|
115
|
-
- - "
|
129
|
+
- - "~>"
|
116
130
|
- !ruby/object:Gem::Version
|
117
|
-
version: '
|
131
|
+
version: '6.4'
|
118
132
|
type: :development
|
119
133
|
prerelease: false
|
120
134
|
version_requirements: !ruby/object:Gem::Requirement
|
121
135
|
requirements:
|
122
|
-
- - "
|
136
|
+
- - "~>"
|
123
137
|
- !ruby/object:Gem::Version
|
124
|
-
version: '
|
138
|
+
version: '6.4'
|
125
139
|
- !ruby/object:Gem::Dependency
|
126
140
|
name: byebug
|
127
141
|
requirement: !ruby/object:Gem::Requirement
|
128
142
|
requirements:
|
129
|
-
- - "
|
143
|
+
- - "~>"
|
130
144
|
- !ruby/object:Gem::Version
|
131
|
-
version: '
|
145
|
+
version: '11.1'
|
132
146
|
type: :development
|
133
147
|
prerelease: false
|
134
148
|
version_requirements: !ruby/object:Gem::Requirement
|
135
149
|
requirements:
|
136
|
-
- - "
|
150
|
+
- - "~>"
|
137
151
|
- !ruby/object:Gem::Version
|
138
|
-
version: '
|
152
|
+
version: '11.1'
|
139
153
|
description: Images and videos management
|
140
154
|
email:
|
141
155
|
- juanonsoftware@gmail.com
|
@@ -158,6 +172,9 @@ files:
|
|
158
172
|
- app/models/abizvn/media/application_record.rb
|
159
173
|
- app/models/abizvn/media/image.rb
|
160
174
|
- app/models/abizvn/media/video.rb
|
175
|
+
- app/serializers/abizvn/media/album_serializer.rb
|
176
|
+
- app/serializers/abizvn/media/image_serializer.rb
|
177
|
+
- app/serializers/abizvn/media/video_serializer.rb
|
161
178
|
- app/views/layouts/abizvn/media/application.html.erb
|
162
179
|
- config/routes.rb
|
163
180
|
- db/migrate/20250314024858_create_videos.rb
|
@@ -167,6 +184,20 @@ files:
|
|
167
184
|
- lib/abizvn/media/engine.rb
|
168
185
|
- lib/abizvn/media/version.rb
|
169
186
|
- lib/tasks/abizvn/media_tasks.rake
|
187
|
+
- spec/factories/abizvn/general/general_settings.rb
|
188
|
+
- spec/factories/abizvn/media/albums.rb
|
189
|
+
- spec/factories/abizvn/media/images.rb
|
190
|
+
- spec/factories/abizvn/media/videos.rb
|
191
|
+
- spec/models/abizvn/media/album_spec.rb
|
192
|
+
- spec/models/abizvn/media/image_spec.rb
|
193
|
+
- spec/models/abizvn/media/video_spec.rb
|
194
|
+
- spec/rails_helper.rb
|
195
|
+
- spec/serializers/abizvn/media/album_serializer_spec.rb
|
196
|
+
- spec/serializers/abizvn/media/image_serializer_spec.rb
|
197
|
+
- spec/serializers/abizvn/media/video_serializer_spec.rb
|
198
|
+
- spec/spec_helper.rb
|
199
|
+
- spec/support/general_validation_helpers.rb
|
200
|
+
- spec/support/media_validation_helpers.rb
|
170
201
|
homepage: https://github.com/abizvncom/abizvn-media
|
171
202
|
licenses:
|
172
203
|
- MIT
|