Sha256: c5b79d895394a6524cbd743f0eb20972ba2262373a6a3b94b119cb6ec68f486d

Contents?: true

Size: 1.33 KB

Versions: 6

Compression:

Stored size: 1.33 KB

Contents

require 'spec_helper'

describe "Product Taxons", type: :feature do
  stub_authorization!

  context "managing taxons", js: true do
    def assert_selected_taxons(taxons)
      # Regression test for https://github.com/spree/spree/issues/2139
      taxons.each do |taxon|
        expect(page).to have_css(".select2-search-choice", text: taxon.name)
      end

      expected_value = taxons.map(&:id).join(",")
      expect(page).to have_xpath("//*[@id = 'product_taxon_ids' and @value = '#{expected_value}']", visible: :all)
    end

    let(:product) { create(:product) }

    it "should allow an admin to manage taxons" do
      taxon_1 = create(:taxon)
      taxon_2 = create(:taxon, name: 'Clothing')
      product.taxons << taxon_1

      visit spree.edit_admin_product_path(product)

      assert_selected_taxons([taxon_1])

      select2_search "Clothing", from: "Taxons"
      click_button "Update"
      assert_selected_taxons([taxon_1, taxon_2])
    end

    context "with an XSS attempt" do
      let(:taxon_name) { %(<script>throw("XSS")</script>) }
      let!(:taxon) { create(:taxon, name: taxon_name) }
      it "displays the escaped HTML without executing it" do
        visit spree.edit_admin_product_path(product)

        select2_search "<script>", from: "Taxons"

        expect(page).to have_content(taxon_name)
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
solidus_backend-1.3.2 spec/features/admin/products/edit/taxons_spec.rb
solidus_backend-1.3.1 spec/features/admin/products/edit/taxons_spec.rb
solidus_backend-1.3.0 spec/features/admin/products/edit/taxons_spec.rb
solidus_backend-1.3.0.rc2 spec/features/admin/products/edit/taxons_spec.rb
solidus_backend-1.3.0.rc1 spec/features/admin/products/edit/taxons_spec.rb
solidus_backend-1.3.0.beta1 spec/features/admin/products/edit/taxons_spec.rb