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

pulibrary / allsearch_api / 90764477-487d-4c2f-bebb-f5a68deec0e3

02 Jul 2025 06:32PM UTC coverage: 99.507% (+0.01%) from 99.494%
90764477-487d-4c2f-bebb-f5a68deec0e3

push

circleci

web-flow
Merge pull request #381 from pulibrary/dpul-rack

Rewrite DPUL and FindingAids controllers as rack applications

16 of 30 new or added lines in 3 files covered. (53.33%)

74 existing lines in 17 files now uncovered.

1009 of 1014 relevant lines covered (99.51%)

96.77 hits per line

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

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

3
# This class is responsible for getting relevant
4
# metadata from PULFALight's JSON
5
class FindingaidsDocument < Document
3✔
6
  include SolrDocument
3✔
7

8
  private
3✔
9

10
  def service
3✔
UNCOV
11
    'findingaids'
33✔
12
  end
13

14
  # Use the collection name as the title?
15
  def title
3✔
UNCOV
16
    document[:collection_ssm]&.first
33✔
17
  end
18

19
  def creator
3✔
UNCOV
20
    document[:creator_ssm]&.first
33✔
21
  end
22

23
  # No sensible field to map to this currently
24
  def publisher
3✔
25
    # tbd - nothing in the current json that seems relevant
26
  end
27

28
  def type
3✔
UNCOV
29
    document[:level_ssm]&.first
33✔
30
  end
31

32
  # This field may contain html
33
  def description
3✔
UNCOV
34
    sanitize document[:abstract_ssm]&.first
33✔
35
  end
36

37
  def doc_keys
3✔
UNCOV
38
    [:access_restriction, :date, :extent, :repository]
33✔
39
  end
40

41
  def repository
3✔
UNCOV
42
    document[:repository_ssm]&.first
33✔
43
  end
44

45
  def extent
3✔
UNCOV
46
    document[:extent_ssm]&.to_sentence
33✔
47
  end
48

49
  def access_restriction
3✔
UNCOV
50
    document[:accessrestrict_ssm]&.first
33✔
51
  end
52

53
  def date
3✔
UNCOV
54
    document[:normalized_date_ssm]&.first
33✔
55
  end
56
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