• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

pulibrary / allsearch_api / dc764cb3-fc9b-47a1-b010-56b68ecb28a7

01 Aug 2025 03:30PM UTC coverage: 99.514%. Remained the same
dc764cb3-fc9b-47a1-b010-56b68ecb28a7

push

circleci

web-flow
Merge pull request #384 from pulibrary/dependabot/bundler/nokogiri-1.18.9

Bump nokogiri from 1.18.8 to 1.18.9

1024 of 1029 relevant lines covered (99.51%)

92.23 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/app/models/article_document.rb
1
# frozen_string_literal: true
2

3
# This class is responsible for getting relevant
4
# metadata from the Summon::Documents
5
class ArticleDocument < Document
3✔
6
  delegate :abstract, to: :document
3✔
7
  delegate :end_page, to: :document
3✔
8
  delegate :issue, to: :document
3✔
9
  delegate :publication_title, to: :document
3✔
10
  delegate :publisher, to: :document
3✔
11
  delegate :start_page, to: :document
3✔
12
  delegate :volume, to: :document
3✔
13

14
  def title
3✔
15
    sanitize document.title
41✔
16
  end
17

18
  def creator
3✔
19
    document&.authors&.first&.fullname
40✔
20
  end
21

22
  def id
3✔
23
    document.src['DOI']&.first
40✔
24
  end
25

26
  def type
3✔
27
    document.content_type
41✔
28
  end
29

30
  # NOTE: the Snippet includes html to emphasize the relevant term, e.g.
31
  # In 1994, the Government of Cameroon introduced an array of <h>forest</h> policy reforms
32
  def description
3✔
33
    sanitize document.snippet
40✔
34
  end
35

36
  def url
3✔
37
    document.link
40✔
38
  end
39

40
  def doc_keys
3✔
41
    [:publication_date, :publication_year, :start_page, :end_page, :fulltext_available, :abstract,
39✔
42
     :publication_title, :volume, :issue, :isxn]
43
  end
44

45
  def fulltext_available
3✔
46
    document.fulltext ? 'Full-text available' : nil
40✔
47
  end
48

49
  def isxn
3✔
50
    (isbn + issn).compact.first
41✔
51
  end
52

53
  def isbn
3✔
54
    document.src['ISBN'].presence || []
41✔
55
  end
56

57
  def issn
3✔
58
    document.src['ISSN'].presence || []
41✔
59
  end
60

61
  def publication_date
3✔
62
    document.publication_date.text
41✔
63
  end
64

65
  def publication_year
3✔
66
    document.publication_date.year.to_s
41✔
67
  end
68
end
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc