Sha256: ea16fc3214944742a401c1b90991f8a49dcf4be0916ea1f8117071ccde159dd0

Contents?: true

Size: 1.54 KB

Versions: 7

Compression:

Stored size: 1.54 KB

Contents

# encoding: UTF-8

# Copyright 2011-2013 innoQ Deutschland GmbH
#
# 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
#
#     http://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 File.join(File.expand_path(File.dirname(__FILE__)), '../integration_test_helper')

class TreeTest < ActionDispatch::IntegrationTest
  test 'browse hierarchical concepts tree' do
    narrower_concept = Concept::SKOS::Base.new.tap do |c|
      Iqvoc::RDFAPI.devour c, 'skos:prefLabel', '"Narrower"@en'
      c.publish
      c.save
    end

    concept = Concept::SKOS::Base.new(top_term: true).tap do |c|
      Iqvoc::RDFAPI.devour c, 'skos:prefLabel', '"Foo"@en'
      Iqvoc::RDFAPI.devour c, 'skos:narrower', narrower_concept
      c.publish
      c.save
    end

    visit hierarchical_concepts_path(lang: :de, format: :html)
    assert page.has_link?(concept.pref_label.to_s),
      "Concept #{concept.pref_label} isn't visible in the hierarchical concepts list"
    assert !page.has_content?(narrower_concept.pref_label.to_s),
      "Narrower relation (#{narrower_concept.pref_label}) shouldn't be visible in the hierarchical concepts list"
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
iqvoc-4.7.0 test/integration/tree_test.rb
iqvoc-4.6.1 test/integration/tree_test.rb
iqvoc-4.5.2 test/integration/tree_test.rb
iqvoc-4.6.0 test/integration/tree_test.rb
iqvoc-4.5.1 test/integration/tree_test.rb
iqvoc-4.5.0 test/integration/tree_test.rb
iqvoc-4.4.0 test/integration/tree_test.rb