docbrown/spec/services/html/image_uri_spec.rb
2023-05-17 17:09:47 -04:00

36 lines
1.3 KiB
Ruby

require "rails_helper"
RSpec.describe Html::ImageUri, type: :service do
let(:camo) { "https://camo.githubusercontent.com/64b9f7c7c5f41ec22113b61235256435cd61779a0554b0595b88b6011f94c60b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6d6d69742d61637469766974792f772f666f72656d2f666f72656d" }
let(:badge) { "https://github.com/forem/forem/actions/workflows/ci-cd.yml/badge.svg?branch=depfu/update/sterile-1.0.24" }
let(:giphy) { "https://media.giphy.com/media/3ow0TN2M8TH2aAn67F/giphy.gif" }
let(:other) { "https://image.com/image.jpg" }
it "can detect camo.github hosted image" do
image = described_class.new(camo)
expect(image).to be_github_camo_user_content
image = described_class.new(badge)
expect(image).not_to be_github_camo_user_content
image = described_class.new(giphy)
expect(image).not_to be_github_camo_user_content
image = described_class.new(other)
expect(image).not_to be_github_camo_user_content
end
it "can detect github hosted badge" do
image = described_class.new(badge)
expect(image).to be_github_badge
image = described_class.new(camo)
expect(image).not_to be_github_badge
image = described_class.new(giphy)
expect(image).not_to be_github_badge
image = described_class.new(other)
expect(image).not_to be_github_badge
end
end