You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
3.9 KiB

  1. require 'rails_helper'
  2. RSpec.describe FetchLinkCardService do
  3. subject { FetchLinkCardService.new }
  4. before do
  5. stub_request(:head, 'http://example.xn--fiqs8s/').to_return(status: 200, headers: { 'Content-Type' => 'text/html' })
  6. stub_request(:get, 'http://example.xn--fiqs8s/').to_return(request_fixture('idn.txt'))
  7. stub_request(:head, 'http://example.com/sjis').to_return(status: 200, headers: { 'Content-Type' => 'text/html' })
  8. stub_request(:get, 'http://example.com/sjis').to_return(request_fixture('sjis.txt'))
  9. stub_request(:head, 'http://example.com/sjis_with_wrong_charset').to_return(status: 200, headers: { 'Content-Type' => 'text/html' })
  10. stub_request(:get, 'http://example.com/sjis_with_wrong_charset').to_return(request_fixture('sjis_with_wrong_charset.txt'))
  11. stub_request(:head, 'http://example.com/koi8-r').to_return(status: 200, headers: { 'Content-Type' => 'text/html' })
  12. stub_request(:get, 'http://example.com/koi8-r').to_return(request_fixture('koi8-r.txt'))
  13. stub_request(:head, 'http://example.com/日本語').to_return(status: 200, headers: { 'Content-Type' => 'text/html' })
  14. stub_request(:get, 'http://example.com/日本語').to_return(request_fixture('sjis.txt'))
  15. stub_request(:head, 'https://github.com/qbi/WannaCry').to_return(status: 404)
  16. subject.call(status)
  17. end
  18. context 'in a local status' do
  19. context do
  20. let(:status) { Fabricate(:status, text: 'Check out http://example.中国') }
  21. it 'works with IDN URLs' do
  22. expect(a_request(:get, 'http://example.xn--fiqs8s/')).to have_been_made.at_least_once
  23. end
  24. end
  25. context do
  26. let(:status) { Fabricate(:status, text: 'Check out http://example.com/sjis') }
  27. it 'works with SJIS' do
  28. expect(a_request(:get, 'http://example.com/sjis')).to have_been_made.at_least_once
  29. expect(status.preview_cards.first.title).to eq("SJISのページ")
  30. end
  31. end
  32. context do
  33. let(:status) { Fabricate(:status, text: 'Check out http://example.com/sjis_with_wrong_charset') }
  34. it 'works with SJIS even with wrong charset header' do
  35. expect(a_request(:get, 'http://example.com/sjis_with_wrong_charset')).to have_been_made.at_least_once
  36. expect(status.preview_cards.first.title).to eq("SJISのページ")
  37. end
  38. end
  39. context do
  40. let(:status) { Fabricate(:status, text: 'Check out http://example.com/koi8-r') }
  41. it 'works with koi8-r' do
  42. expect(a_request(:get, 'http://example.com/koi8-r')).to have_been_made.at_least_once
  43. expect(status.preview_cards.first.title).to eq("Московя начинаетъ только въ XVI ст. привлекать внимане иностранцевъ.")
  44. end
  45. end
  46. context do
  47. let(:status) { Fabricate(:status, text: 'テストhttp://example.com/日本語') }
  48. it 'works with Japanese path string' do
  49. expect(a_request(:get, 'http://example.com/日本語')).to have_been_made.at_least_once
  50. expect(status.preview_cards.first.title).to eq("SJISのページ")
  51. end
  52. end
  53. end
  54. context 'in a remote status' do
  55. let(:status) { Fabricate(:status, account: Fabricate(:account, domain: 'example.com'), text: 'Habt ihr ein paar gute Links zu #<span class="tag"><a href="https://quitter.se/tag/wannacry" target="_blank" rel="tag noopener" title="https://quitter.se/tag/wannacry">Wannacry</a></span> herumfliegen? Ich will mal unter <br> <a href="https://github.com/qbi/WannaCry" target="_blank" rel="noopener" title="https://github.com/qbi/WannaCry">https://github.com/qbi/WannaCry</a> was sammeln. !<a href="http://sn.jonkman.ca/group/416/id" target="_blank" rel="noopener" title="http://sn.jonkman.ca/group/416/id">security</a>&nbsp;') }
  56. it 'parses out URLs' do
  57. expect(a_request(:head, 'https://github.com/qbi/WannaCry')).to have_been_made.at_least_once
  58. end
  59. it 'ignores URLs to hashtags' do
  60. expect(a_request(:head, 'https://quitter.se/tag/wannacry')).to_not have_been_made
  61. end
  62. end
  63. end