ro-crate 0.4.13 → 0.4.16

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 364757350da7d275b02def348bfd97782ad0ae31728c44f0691bc084e4d94ac9
4
- data.tar.gz: 6b56ae58b682a4618dcb92ca78cbae720426316bc8ec50b9377fb9fda8ec9137
3
+ metadata.gz: b489bc85ce753f46035d1f5843ac9539de35e1403b92a9139c19061901d6b2d6
4
+ data.tar.gz: 6aab0b3d9f9323d7470554d82a887376fc00db95f68d0fae011416c66eb38937
5
5
  SHA512:
6
- metadata.gz: a2b14f9c64528476a18f84d0292311484e975a3dc6085c00c94f5dac8d84fa144e91bb6138c876db4a4079aeec4222eb6a1f91458e2ef0260defa9d3a0a42d57
7
- data.tar.gz: b56d257868b7cb94f341e844223d14988c280fff34bb54dd1a676d47681d96afc8193ebb60a22eecfef7e96dc0d2ce03ed1571190a1717fbe56d1b80ed579053
6
+ metadata.gz: 55769c5b1a9b22ec5ad19e762ce9651e47407dbd01673c790c59753c6ac617cfa2ea81ecdcc6004313775069344845147c765e6396303491c94091e006c98b5b
7
+ data.tar.gz: 1798256fa994b7851da4b0adf0d78514aeaadc2e48935820d3c1f5dc546a8a633d5da11db19adeec7bd8763093a133744551e37f702d943a376c1b082e12d388
@@ -3,6 +3,10 @@ on: [push, pull_request]
3
3
  jobs:
4
4
  run-tests:
5
5
  runs-on: ubuntu-latest
6
+ strategy:
7
+ matrix:
8
+ ruby: ['2.6', '2.7']
9
+ fail-fast: false
6
10
  steps:
7
11
  - name: Checkout
8
12
  uses: actions/checkout@v2.3.1 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
@@ -11,6 +15,7 @@ jobs:
11
15
  - name: Setup Ruby
12
16
  uses: ruby/setup-ruby@v1
13
17
  with:
18
+ ruby-version: ${{ matrix.ruby }}
14
19
  bundler-cache: true # runs 'bundle install' and caches installed gems automatically
15
20
  - name: Run tests
16
21
  run: bundle exec rake test
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-2.6.6
1
+ ruby-2.7.5
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ro-crate (0.4.13)
4
+ ro-crate (0.4.16)
5
5
  addressable (>= 2.7, < 2.9)
6
6
  rubyzip (~> 2.0.0)
7
7
 
@@ -45,4 +45,4 @@ DEPENDENCIES
45
45
  yard (~> 0.9.25)
46
46
 
47
47
  BUNDLED WITH
48
- 1.17.3
48
+ 2.3.6
@@ -2,6 +2,11 @@ module ROCrate
2
2
  ##
3
3
  # A wrapper class for Hash that adds methods to dereference Entities within an RO-Crate.
4
4
  class JSONLDHash < ::Hash
5
+ def self.[](graph, content = {})
6
+ @graph = graph
7
+ super(stringified(content))
8
+ end
9
+
5
10
  def initialize(graph, content = {})
6
11
  @graph = graph
7
12
  super()
@@ -4,8 +4,7 @@ module ROCrate
4
4
  # Contextual Entities are used to describe and provide context to the Data Entities within the crate.
5
5
  class ContextualEntity < Entity
6
6
  def self.format_local_id(id)
7
- i = super
8
- i.start_with?('#') ? i : "##{i}"
7
+ super(id.start_with?('#') ? id : "##{id}")
9
8
  end
10
9
 
11
10
  ##
@@ -288,6 +288,20 @@ module ROCrate
288
288
  deleted
289
289
  end
290
290
 
291
+ ##
292
+ # Remove any contextual entities that are not linked from any other entity.
293
+ # Optionally takes a block to decide whether the given entity should be removed or not, otherwise removes all
294
+ # unlinked entities.
295
+ # @yieldparam [ContextualEntity] entity An unlinked contextual entity.
296
+ # @yieldparam [Boolean] remove Should this entity be removed?
297
+ #
298
+ # @return [Array<ContextualEntity>] The entities that were removed.
299
+ def gc(&block)
300
+ unlinked_entities = contextual_entities - metadata.linked_entities(deep: true)
301
+
302
+ unlinked_entities.select(&block).each { |e| e.delete(remove_orphaned: false) }
303
+ end
304
+
291
305
  private
292
306
 
293
307
  def full_entry_path(relative_path)
@@ -5,10 +5,6 @@ module ROCrate
5
5
  class DataEntity < Entity
6
6
  properties(%w[name contentSize dateModified encodingFormat identifier sameAs author])
7
7
 
8
- def self.format_local_id(id)
9
- super.chomp('/')
10
- end
11
-
12
8
  ##
13
9
  # Return an appropriate specialization of DataEntity for the given properties.
14
10
  # @param props [Hash] Set of properties to try and infer the type from.
@@ -18,11 +14,27 @@ module ROCrate
18
14
  type = [type] unless type.is_a?(Array)
19
15
  if type.include?('Dataset')
20
16
  ROCrate::Directory
21
- else
17
+ elsif type.include?('File')
22
18
  ROCrate::File
19
+ else
20
+ self
23
21
  end
24
22
  end
25
23
 
24
+ ##
25
+ # Create a new ROCrate::DataEntity. This entity represents something that is neither a file or directory, but
26
+ # still constitutes part of the crate.
27
+ # PLEASE NOTE, the new data entity will not be added to the crate. To do this, call Crate#add_data_entity.
28
+ #
29
+ # @param crate [Crate] The RO-Crate that owns this directory.
30
+ # @param source [nil] Ignored. For compatibility with the File and Directory constructor signatures.
31
+ # @param id [String, nil] An ID to identify this DataEntity, or nil to auto-generate an appropriate one,
32
+ # (or determine via the properties param)
33
+ # @param properties [Hash{String => Object}] A hash of JSON-LD properties to associate with this DataEntity.
34
+ def initialize(crate, source = nil, id = nil, properties = {})
35
+ super(crate, id, properties)
36
+ end
37
+
26
38
  ##
27
39
  # The payload of all the files/directories associated with this DataEntity, mapped by their relative file path.
28
40
  #
@@ -3,11 +3,11 @@ module ROCrate
3
3
  # A data entity that represents a directory of potentially many files and subdirectories (or none).
4
4
  class Directory < DataEntity
5
5
  def self.format_local_id(id)
6
- super + '/'
6
+ super.chomp('/') + '/'
7
7
  end
8
8
 
9
9
  ##
10
- # Create a new Directory. PLEASE NOTE, the new directory will not be added to the crate. To do this, call
10
+ # Create a new ROCrate::Directory. PLEASE NOTE, the new directory will not be added to the crate. To do this, call
11
11
  # Crate#add_data_entity, or just use Crate#add_directory.
12
12
  #
13
13
  # @param crate [Crate] The RO-Crate that owns this directory.
@@ -24,7 +24,7 @@ module ROCrate
24
24
  crate_path = source_directory.basename.to_s if crate_path.nil?
25
25
  end
26
26
 
27
- super(crate, crate_path, properties)
27
+ super(crate, nil, crate_path, properties)
28
28
  end
29
29
 
30
30
  ##
@@ -57,7 +57,12 @@ module ROCrate
57
57
  # @param id [String] The candidate local ID to be formatted.
58
58
  # @return [String] The formatted local ID.
59
59
  def self.format_local_id(id)
60
- Addressable::URI.escape(id.sub(/\A\.\//, '')) # Remove initial ./ if present
60
+ if id.start_with?('#')
61
+ '#' + Addressable::URI.encode_component(id[1..-1], Addressable::URI::CharacterClasses::QUERY)
62
+ else
63
+ # Remove initial ./ if present
64
+ Addressable::URI.encode_component(id.sub(/\A\.\//, ''), Addressable::URI::CharacterClasses::PATH)
65
+ end
61
66
  end
62
67
 
63
68
  ##
@@ -242,14 +247,16 @@ module ROCrate
242
247
  # @param linked [Hash{String => Entity}] Discovered entities, mapped by their ID, to avoid loops when recursing.
243
248
  # @return [Array<Entity>]
244
249
  def linked_entities(deep: false, linked: {})
245
- properties.each do |key, value|
250
+ properties.each_key do |key|
251
+ value = properties[key] # We're doing this to call the JSONLDHash#[] method which wraps
246
252
  value = [value] if value.is_a?(JSONLDHash)
247
253
 
248
254
  if value.is_a?(Array)
249
255
  value.each do |v|
250
256
  if v.is_a?(JSONLDHash) && !linked.key?(v['@id'])
251
257
  entity = v.dereference
252
- linked[entity.id] = entity if entity
258
+ next unless entity
259
+ linked[entity.id] = entity
253
260
  if deep
254
261
  entity.linked_entities(deep: true, linked: linked).each do |e|
255
262
  linked[e.id] = e
@@ -2,6 +2,10 @@ module ROCrate
2
2
  ##
3
3
  # A data entity that represents a single file.
4
4
  class File < DataEntity
5
+ def self.format_local_id(id)
6
+ super.chomp('/')
7
+ end
8
+
5
9
  ##
6
10
  # Create a new ROCrate::File. PLEASE NOTE, the new file will not be added to the crate. To do this, call
7
11
  # Crate#add_data_entity, or just use Crate#add_file.
@@ -32,7 +36,7 @@ module ROCrate
32
36
  crate_path = source.to_s if source.is_a?(URI) && source.absolute?
33
37
  end
34
38
 
35
- super(crate, crate_path, properties)
39
+ super(crate, nil, crate_path, properties)
36
40
 
37
41
  if source.is_a?(URI) && source.absolute?
38
42
  @entry = RemoteEntry.new(source)
@@ -17,7 +17,7 @@ module ROCrate
17
17
  # @return [IO] An IO object for the remote resource.
18
18
  #
19
19
  def source
20
- open(uri)
20
+ uri.open
21
21
  end
22
22
 
23
23
  ##
@@ -245,10 +245,10 @@ module ROCrate
245
245
  fullpath = ::File.join(source, i)
246
246
  path = Pathname.new(fullpath) if ::File.exist?(fullpath)
247
247
  end
248
- unless path
249
- warn "Missing file/directory: #{id}, skipping..."
250
- return nil
251
- end
248
+ # unless path
249
+ # warn "Missing file/directory: #{id}, skipping..."
250
+ # return nil
251
+ # end
252
252
  end
253
253
 
254
254
  entity_class.new(crate, path, decoded_id, entity_props)
@@ -262,7 +262,9 @@ module ROCrate
262
262
  # mapped by its @id, or nil if nothing is found.
263
263
  def self.extract_metadata_entity(entities)
264
264
  key = entities.detect do |_, props|
265
- props.dig('conformsTo', '@id')&.start_with?(ROCrate::Metadata::RO_CRATE_BASE)
265
+ conforms = props['conformsTo']
266
+ conforms = [conforms] unless conforms.is_a?(Array)
267
+ conforms.compact.any? { |c| c['@id']&.start_with?(ROCrate::Metadata::RO_CRATE_BASE) }
266
268
  end&.first
267
269
 
268
270
  return entities.delete(key) if key
data/ro_crate.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'ro-crate'
3
- s.version = '0.4.13'
3
+ s.version = '0.4.16'
4
4
  s.summary = 'Create, manipulate, read RO-Crates.'
5
5
  s.authors = ['Finn Bacall']
6
6
  s.email = 'finn.bacall@manchester.ac.uk'
data/test/crate_test.rb CHANGED
@@ -348,4 +348,32 @@ class CrateTest < Test::Unit::TestCase
348
348
 
349
349
  assert_equal crate.payload.keys, crate.entries.keys
350
350
  end
351
+
352
+ test 'can garbage collect unlinked entities' do
353
+ crate = ROCrate::Reader.read(fixture_file('unlinked_entity_crate').path)
354
+
355
+ unlinked = crate.gc
356
+ assert_equal 2, unlinked.length
357
+ ids = unlinked.map(&:id)
358
+ assert_includes ids, '#joe'
359
+ assert_includes ids, '#joehouse'
360
+ assert_not_includes crate.contextual_entities, unlinked.first
361
+ assert_not_includes crate.contextual_entities, unlinked.last
362
+ assert_nil crate.get('#joe')
363
+ assert_nil crate.get('#joehouse')
364
+ end
365
+
366
+ test 'can conditionally garbage collect unlinked entities using a block' do
367
+ crate = ROCrate::Reader.read(fixture_file('unlinked_entity_crate').path)
368
+
369
+ unlinked = crate.gc do |entity|
370
+ entity.is_a?(ROCrate::Person)
371
+ end
372
+ assert_equal 1, unlinked.length
373
+ ids = unlinked.map(&:id)
374
+ assert_includes ids, '#joe'
375
+ assert_not_includes crate.contextual_entities, unlinked.first
376
+ assert_nil crate.get('#joe')
377
+ assert crate.get('#joehouse')
378
+ end
351
379
  end
data/test/entity_test.rb CHANGED
@@ -1,3 +1,4 @@
1
+ # encoding: utf-8
1
2
  require 'test_helper'
2
3
 
3
4
  class EntityTest < Test::Unit::TestCase
@@ -38,11 +39,11 @@ class EntityTest < Test::Unit::TestCase
38
39
  test 'fetch appropriate class for type' do
39
40
  assert_equal ROCrate::File, ROCrate::DataEntity.specialize({ '@type' => 'File' })
40
41
  assert_equal ROCrate::File, ROCrate::DataEntity.specialize({ '@type' => ['File', 'Image'] })
41
- assert_equal ROCrate::File, ROCrate::DataEntity.specialize({ '@type' => 'SoftwareSourceCode' })
42
- assert_equal ROCrate::File, ROCrate::DataEntity.specialize({ '@type' => 'anything that isnt a directory' })
42
+ assert_equal ROCrate::DataEntity, ROCrate::DataEntity.specialize({ '@type' => 'SoftwareSourceCode' })
43
+ assert_equal ROCrate::DataEntity, ROCrate::DataEntity.specialize({ '@type' => 'anything that isnt a directory' })
43
44
  assert_equal ROCrate::Directory, ROCrate::DataEntity.specialize({ '@type' => 'Dataset' })
44
45
  assert_equal ROCrate::Directory, ROCrate::DataEntity.specialize({ '@type' => ['Dataset', 'Image'] })
45
- assert_equal ROCrate::File, ROCrate::DataEntity.specialize({ '@type' => 'Person' })
46
+ assert_equal ROCrate::DataEntity, ROCrate::DataEntity.specialize({ '@type' => 'Person' })
46
47
  assert_equal ROCrate::File, ROCrate::DataEntity.specialize({ '@type' => ['File', 'Image'], '@id' => 'http://www.external.com' })
47
48
 
48
49
  assert_equal ROCrate::Person, ROCrate::ContextualEntity.specialize({ '@type' => 'Person' })
@@ -75,6 +76,7 @@ class EntityTest < Test::Unit::TestCase
75
76
  assert_equal "#Hello%20World/Goodbye%20World", ROCrate::ContextualEntity.format_id('#Hello World/Goodbye World')
76
77
  assert_equal "#Hello%20World/Goodbye%20World", ROCrate::ContextualEntity.format_id('Hello World/Goodbye World')
77
78
  assert_equal "#%F0%9F%98%8A", ROCrate::ContextualEntity.format_id("😊")
79
+ assert_equal "https://orcid.org/0000-0002-0048-3300", ROCrate::ContextualEntity.format_id("https://orcid.org/0000-0002-0048-3300")
78
80
 
79
81
  assert_equal "test123/hello.txt", ROCrate::File.format_id('./test123/hello.txt')
80
82
  assert_equal "test123/hello.txt", ROCrate::File.format_id('./test123/hello.txt/')
@@ -0,0 +1,33 @@
1
+ {
2
+ "@context": [
3
+ "https://w3id.org/ro/crate/1.1/context",
4
+ {
5
+ "@vocab": "http://schema.org/"
6
+ },
7
+ {
8
+ "@base": null
9
+ }
10
+ ],
11
+ "@graph": [
12
+ {
13
+ "@id": "#collection",
14
+ "@type": "RepositoryCollection",
15
+ "name": "Test collection"
16
+ },
17
+ {
18
+ "@id": "./",
19
+ "@type": "Dataset",
20
+ "hasFile": [],
21
+ "hasPart": [{"@id": "#collection"}],
22
+ "name": "testing hasPart"
23
+ },
24
+ {
25
+ "@id": "ro-crate-metadata.json",
26
+ "@type": "CreativeWork",
27
+ "about": {
28
+ "@id": "./"
29
+ },
30
+ "identifier": "ro-crate-metadata.json"
31
+ }
32
+ ]
33
+ }
@@ -24,9 +24,10 @@
24
24
  "about": {
25
25
  "@id": "./"
26
26
  },
27
- "conformsTo": {
28
- "@id": "https://w3id.org/ro/crate/1.1"
29
- }
27
+ "conformsTo": [
28
+ { "@id": "https://w3id.org/ro/crate/1.1" },
29
+ { "@id": "https://about.workflowhub.eu/Workflow-RO-Crate/" }
30
+ ]
30
31
  },
31
32
  {
32
33
  "@id": "./",
@@ -128,6 +129,12 @@
128
129
  "@type": "SoftwareApplication",
129
130
  "name": "Planemo",
130
131
  "url": {"@id": "https://github.com/galaxyproject/planemo"}
132
+ },
133
+ {
134
+ "@id": "https://about.workflowhub.eu/Workflow-RO-Crate/",
135
+ "@type": "CreativeWork",
136
+ "name": "Workflow RO-Crate Profile",
137
+ "version": "0.2.0"
131
138
  }
132
139
  ]
133
140
  }
@@ -0,0 +1,176 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
@@ -0,0 +1,2 @@
1
+ # Unlinked Entity Crate
2
+ Contains entities that are not linked from any other!
@@ -0,0 +1,150 @@
1
+ {
2
+ "@context": [
3
+ "https://w3id.org/ro/crate/1.1/context",
4
+ {
5
+ "TestSuite": "https://w3id.org/ro/terms/test#TestSuite",
6
+ "TestInstance": "https://w3id.org/ro/terms/test#TestInstance",
7
+ "TestService": "https://w3id.org/ro/terms/test#TestService",
8
+ "TestDefinition": "https://w3id.org/ro/terms/test#TestDefinition",
9
+ "PlanemoEngine": "https://w3id.org/ro/terms/test#PlanemoEngine",
10
+ "JenkinsService": "https://w3id.org/ro/terms/test#JenkinsService",
11
+ "TravisService": "https://w3id.org/ro/terms/test#TravisService",
12
+ "GithubService": "https://w3id.org/ro/terms/test#GithubService",
13
+ "instance": "https://w3id.org/ro/terms/test#instance",
14
+ "runsOn": "https://w3id.org/ro/terms/test#runsOn",
15
+ "resource": "https://w3id.org/ro/terms/test#resource",
16
+ "definition": "https://w3id.org/ro/terms/test#definition",
17
+ "engineVersion": "https://w3id.org/ro/terms/test#engineVersion"
18
+ }
19
+ ],
20
+ "@graph": [
21
+ {
22
+ "@id": "ro-crate-metadata.json",
23
+ "@type": "CreativeWork",
24
+ "about": {
25
+ "@id": "./"
26
+ },
27
+ "conformsTo": [
28
+ { "@id": "https://w3id.org/ro/crate/1.1" },
29
+ { "@id": "https://about.workflowhub.eu/Workflow-RO-Crate/" }
30
+ ]
31
+ },
32
+ {
33
+ "@id": "./",
34
+ "@type": "Dataset",
35
+ "name": "sort-and-change-case",
36
+ "description": "sort lines and change text to upper case",
37
+ "license": "Apache-2.0",
38
+ "mainEntity": {
39
+ "@id": "sort-and-change-case.ga"
40
+ },
41
+ "hasPart": [
42
+ {
43
+ "@id": "sort-and-change-case.ga"
44
+ },
45
+ {
46
+ "@id": "LICENSE"
47
+ },
48
+ {
49
+ "@id": "README.md"
50
+ },
51
+ {
52
+ "@id": "test/test1/sort-and-change-case-test.yml"
53
+ }
54
+ ],
55
+ "mentions": [
56
+ {
57
+ "@id": "#test1"
58
+ }
59
+ ]
60
+ },
61
+ {
62
+ "@id": "sort-and-change-case.ga",
63
+ "@type": [
64
+ "File",
65
+ "SoftwareSourceCode",
66
+ "ComputationalWorkflow"
67
+ ],
68
+ "programmingLanguage": {
69
+ "@id": "#galaxy"
70
+ },
71
+ "name": "sort-and-change-case"
72
+ },
73
+ {
74
+ "@id": "LICENSE",
75
+ "@type": "File"
76
+ },
77
+ {
78
+ "@id": "README.md",
79
+ "@type": "File"
80
+ },
81
+ {
82
+ "@id": "#galaxy",
83
+ "@type": "ComputerLanguage",
84
+ "name": "Galaxy",
85
+ "identifier": {
86
+ "@id": "https://galaxyproject.org/"
87
+ },
88
+ "url": {
89
+ "@id": "https://galaxyproject.org/"
90
+ }
91
+ },
92
+ {
93
+ "@id": "#test1",
94
+ "name": "test1",
95
+ "@type": "TestSuite",
96
+ "mainEntity": {
97
+ "@id": "sort-and-change-case.ga"
98
+ },
99
+ "instance": [
100
+ {"@id": "#test1_1"}
101
+ ],
102
+ "definition": {"@id": "test/test1/sort-and-change-case-test.yml"}
103
+ },
104
+ {
105
+ "@id": "#test1_1",
106
+ "name": "test1_1",
107
+ "@type": "TestInstance",
108
+ "runsOn": {"@id": "https://w3id.org/ro/terms/test#JenkinsService"},
109
+ "url": "http://example.org/jenkins",
110
+ "resource": "job/tests/"
111
+ },
112
+ {
113
+ "@id": "test/test1/sort-and-change-case-test.yml",
114
+ "@type": [
115
+ "File",
116
+ "TestDefinition"
117
+ ],
118
+ "conformsTo": {"@id": "https://w3id.org/ro/terms/test#PlanemoEngine"},
119
+ "engineVersion": ">=0.70"
120
+ },
121
+ {
122
+ "@id": "https://w3id.org/ro/terms/test#JenkinsService",
123
+ "@type": "TestService",
124
+ "name": "Jenkins",
125
+ "url": {"@id": "https://www.jenkins.io"}
126
+ },
127
+ {
128
+ "@id": "https://w3id.org/ro/terms/test#PlanemoEngine",
129
+ "@type": "SoftwareApplication",
130
+ "name": "Planemo",
131
+ "url": {"@id": "https://github.com/galaxyproject/planemo"}
132
+ },
133
+ {
134
+ "@id": "https://about.workflowhub.eu/Workflow-RO-Crate/",
135
+ "@type": "CreativeWork",
136
+ "name": "Workflow RO-Crate Profile",
137
+ "version": "0.2.0"
138
+ },
139
+ {
140
+ "@id": "#joe",
141
+ "@type": "Person",
142
+ "name": "Joe Jones"
143
+ },
144
+ {
145
+ "@id": "#joehouse",
146
+ "@type": "Organization",
147
+ "name": "Joe's House"
148
+ }
149
+ ]
150
+ }
@@ -0,0 +1,118 @@
1
+ {
2
+ "uuid": "e2a8566c-c025-4181-9e90-7ed29d4e4df1",
3
+ "tags": [],
4
+ "format-version": "0.1",
5
+ "name": "sort-and-change-case",
6
+ "version": 0,
7
+ "steps": {
8
+ "0": {
9
+ "tool_id": null,
10
+ "tool_version": null,
11
+ "outputs": [],
12
+ "workflow_outputs": [],
13
+ "input_connections": {},
14
+ "tool_state": "{}",
15
+ "id": 0,
16
+ "uuid": "5a36fad2-66c7-4b9e-8759-0fbcae9b8541",
17
+ "errors": null,
18
+ "name": "Input dataset",
19
+ "label": "bed_input",
20
+ "inputs": [],
21
+ "position": {
22
+ "top": 200,
23
+ "left": 200
24
+ },
25
+ "annotation": "",
26
+ "content_id": null,
27
+ "type": "data_input"
28
+ },
29
+ "1": {
30
+ "tool_id": "sort1",
31
+ "tool_version": "1.1.0",
32
+ "outputs": [
33
+ {
34
+ "type": "input",
35
+ "name": "out_file1"
36
+ }
37
+ ],
38
+ "workflow_outputs": [
39
+ {
40
+ "output_name": "out_file1",
41
+ "uuid": "8237f71a-bc2a-494e-a63c-09c1e65ef7c8",
42
+ "label": "sorted_bed"
43
+ }
44
+ ],
45
+ "input_connections": {
46
+ "input": {
47
+ "output_name": "output",
48
+ "id": 0
49
+ }
50
+ },
51
+ "tool_state": "{\"__page__\": null, \"style\": \"\\\"alpha\\\"\", \"column\": \"\\\"1\\\"\", \"__rerun_remap_job_id__\": null, \"column_set\": \"[]\", \"input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"header_lines\": \"\\\"0\\\"\", \"order\": \"\\\"ASC\\\"\"}",
52
+ "id": 1,
53
+ "uuid": "0b6b3cda-c75f-452b-85b1-8ae4f3302ba4",
54
+ "errors": null,
55
+ "name": "Sort",
56
+ "post_job_actions": {},
57
+ "label": "sort",
58
+ "inputs": [
59
+ {
60
+ "name": "input",
61
+ "description": "runtime parameter for tool Sort"
62
+ }
63
+ ],
64
+ "position": {
65
+ "top": 200,
66
+ "left": 420
67
+ },
68
+ "annotation": "",
69
+ "content_id": "sort1",
70
+ "type": "tool"
71
+ },
72
+ "2": {
73
+ "tool_id": "ChangeCase",
74
+ "tool_version": "1.0.0",
75
+ "outputs": [
76
+ {
77
+ "type": "tabular",
78
+ "name": "out_file1"
79
+ }
80
+ ],
81
+ "workflow_outputs": [
82
+ {
83
+ "output_name": "out_file1",
84
+ "uuid": "c31cd733-dab6-4d50-9fec-b644d162397b",
85
+ "label": "uppercase_bed"
86
+ }
87
+ ],
88
+ "input_connections": {
89
+ "input": {
90
+ "output_name": "out_file1",
91
+ "id": 1
92
+ }
93
+ },
94
+ "tool_state": "{\"__page__\": null, \"casing\": \"\\\"up\\\"\", \"__rerun_remap_job_id__\": null, \"cols\": \"\\\"c1\\\"\", \"delimiter\": \"\\\"TAB\\\"\", \"input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}",
95
+ "id": 2,
96
+ "uuid": "9698bcde-0729-48fe-b88d-ccfb6f6153b4",
97
+ "errors": null,
98
+ "name": "Change Case",
99
+ "post_job_actions": {},
100
+ "label": "change_case",
101
+ "inputs": [
102
+ {
103
+ "name": "input",
104
+ "description": "runtime parameter for tool Change Case"
105
+ }
106
+ ],
107
+ "position": {
108
+ "top": 200,
109
+ "left": 640
110
+ },
111
+ "annotation": "",
112
+ "content_id": "ChangeCase",
113
+ "type": "tool"
114
+ }
115
+ },
116
+ "annotation": "",
117
+ "a_galaxy_workflow": "true"
118
+ }
@@ -0,0 +1,3 @@
1
+ chr1 66999824 67210768
2
+ chr7 48998526 50489626
3
+ chr1 66874821 66010368
@@ -0,0 +1,3 @@
1
+ CHR1 66874821 66010368
2
+ CHR1 66999824 67210768
3
+ CHR7 48998526 50489626
@@ -0,0 +1,8 @@
1
+ - doc: test with a small input
2
+ job:
3
+ bed_input:
4
+ class: File
5
+ path: input.bed
6
+ outputs:
7
+ uppercase_bed:
8
+ path: output_exp.bed
@@ -123,7 +123,7 @@
123
123
  },
124
124
  {
125
125
  "@id": "workflow/workflow.knime",
126
- "@type": "SoftwareSourceCode",
126
+ "@type": ["File", "SoftwareSourceCode"],
127
127
  "additionalType": {
128
128
  "@id": "wfdesc:Workflow"
129
129
  },
@@ -161,7 +161,7 @@
161
161
  },
162
162
  {
163
163
  "@id": "tools/RetroPath2.cwl",
164
- "@type": "SoftwareSourceCode",
164
+ "@type": ["File", "SoftwareSourceCode"],
165
165
  "additionalType": {
166
166
  "@id": "wfdesc:Workflow"
167
167
  },
@@ -188,7 +188,7 @@
188
188
  },
189
189
  {
190
190
  "@id": "workflow/workflow.svg",
191
- "@type": "ImageObject",
191
+ "@type": ["File", "ImageObject"],
192
192
  "additionalType": {"@id": "roterms:Sketch"},
193
193
  "encodingFormat": "image/svg+xml",
194
194
  "description": "Diagram of RetroPath2.0 workflow",
@@ -201,7 +201,7 @@
201
201
  },
202
202
  {
203
203
  "@id": "Dockerfile",
204
- "@type": "SoftwareSourceCode",
204
+ "@type": ["File", "SoftwareSourceCode"],
205
205
  "url": {
206
206
  "@id": "https://hub.docker.com/r/ibisba/retropath2/"
207
207
  },
@@ -220,7 +220,7 @@
220
220
  },
221
221
  {
222
222
  "@id": "test/test.sh",
223
- "@type": "SoftwareSourceCode",
223
+ "@type": ["File", "SoftwareSourceCode"],
224
224
  "additionalType": {
225
225
  "@id": "wf4ever:Script"
226
226
  },
Binary file
data/test/reader_test.rb CHANGED
@@ -4,12 +4,13 @@ class ReaderTest < Test::Unit::TestCase
4
4
  test 'reading from directory' do
5
5
  crate = ROCrate::Reader.read(fixture_file('workflow-0.2.0').path)
6
6
 
7
- refute crate.dereference('.ssh/id_rsa')
7
+ refute crate.dereference('~/.ssh/id_rsa')
8
8
 
9
9
  entity = crate.dereference('workflow/workflow.knime')
10
10
  assert_not_nil entity
11
11
  assert entity.is_a?(ROCrate::File)
12
- assert_equal 'SoftwareSourceCode', entity.type
12
+ assert entity.has_type?('SoftwareSourceCode')
13
+ assert entity.has_type?('File')
13
14
 
14
15
  entity = crate.dereference('workflow/')
15
16
  assert_not_nil entity
@@ -19,22 +20,26 @@ class ReaderTest < Test::Unit::TestCase
19
20
  entity = crate.dereference('tools/RetroPath2.cwl')
20
21
  assert_not_nil entity
21
22
  assert entity.is_a?(ROCrate::File)
22
- assert_equal 'SoftwareSourceCode', entity.type
23
+ assert entity.has_type?('SoftwareSourceCode')
24
+ assert entity.has_type?('File')
23
25
 
24
26
  entity = crate.dereference('workflow/workflow.svg')
25
27
  assert_not_nil entity
26
28
  assert entity.is_a?(ROCrate::File)
27
- assert_equal 'ImageObject', entity.type
29
+ assert entity.has_type?('ImageObject')
30
+ assert entity.has_type?('File')
28
31
 
29
32
  entity = crate.dereference('Dockerfile')
30
33
  assert_not_nil entity
31
34
  assert entity.is_a?(ROCrate::File)
32
- assert_equal 'SoftwareSourceCode', entity.type
35
+ assert entity.has_type?('SoftwareSourceCode')
36
+ assert entity.has_type?('File')
33
37
 
34
38
  entity = crate.dereference('test/test.sh')
35
39
  assert_not_nil entity
36
40
  assert entity.is_a?(ROCrate::File)
37
- assert_equal 'SoftwareSourceCode', entity.type
41
+ assert entity.has_type?('SoftwareSourceCode')
42
+ assert entity.has_type?('File')
38
43
 
39
44
  # Example is broken
40
45
  # entity = crate.dereference('README.md')
@@ -46,12 +51,13 @@ class ReaderTest < Test::Unit::TestCase
46
51
  test 'reading from zip' do
47
52
  crate = ROCrate::Reader.read(fixture_file('workflow-0.2.0.zip'))
48
53
 
49
- refute crate.dereference('.ssh/id_rsa')
54
+ refute crate.dereference('~/.ssh/id_rsa')
50
55
 
51
56
  entity = crate.dereference('workflow/workflow.knime')
52
57
  assert_not_nil entity
53
58
  assert entity.is_a?(ROCrate::File)
54
- assert_equal 'SoftwareSourceCode', entity.type
59
+ assert entity.has_type?('SoftwareSourceCode')
60
+ assert entity.has_type?('File')
55
61
 
56
62
  entity = crate.dereference('workflow/')
57
63
  assert_not_nil entity
@@ -61,22 +67,26 @@ class ReaderTest < Test::Unit::TestCase
61
67
  entity = crate.dereference('tools/RetroPath2.cwl')
62
68
  assert_not_nil entity
63
69
  assert entity.is_a?(ROCrate::File)
64
- assert_equal 'SoftwareSourceCode', entity.type
70
+ assert entity.has_type?('SoftwareSourceCode')
71
+ assert entity.has_type?('File')
65
72
 
66
73
  entity = crate.dereference('workflow/workflow.svg')
67
74
  assert_not_nil entity
68
75
  assert entity.is_a?(ROCrate::File)
69
- assert_equal 'ImageObject', entity.type
76
+ assert entity.has_type?('ImageObject')
77
+ assert entity.has_type?('File')
70
78
 
71
79
  entity = crate.dereference('Dockerfile')
72
80
  assert_not_nil entity
73
81
  assert entity.is_a?(ROCrate::File)
74
- assert_equal 'SoftwareSourceCode', entity.type
82
+ assert entity.has_type?('SoftwareSourceCode')
83
+ assert entity.has_type?('File')
75
84
 
76
85
  entity = crate.dereference('test/test.sh')
77
86
  assert_not_nil entity
78
87
  assert entity.is_a?(ROCrate::File)
79
- assert_equal 'SoftwareSourceCode', entity.type
88
+ assert entity.has_type?('SoftwareSourceCode')
89
+ assert entity.has_type?('File')
80
90
 
81
91
  # Example is broken
82
92
  # entity = crate.dereference('README.md')
@@ -258,4 +268,15 @@ class ReaderTest < Test::Unit::TestCase
258
268
  assert crate.preview.source.source.is_a?(Pathname)
259
269
  assert_equal 80526, crate.preview.source.read.length
260
270
  end
271
+
272
+ test 'read crate with data entity that is neither file or directory' do
273
+ crate = ROCrate::Reader.read_directory(fixture_file('misc_data_entity_crate').path)
274
+
275
+ entity = crate.get('#collection')
276
+ assert entity.is_a?(ROCrate::DataEntity)
277
+ refute entity.is_a?(ROCrate::File)
278
+ refute entity.is_a?(ROCrate::Directory)
279
+ assert entity.has_type?('RepositoryCollection')
280
+ assert entity.payload.empty?
281
+ end
261
282
  end
data/test/writer_test.rb CHANGED
@@ -189,4 +189,15 @@ class WriterTest < Test::Unit::TestCase
189
189
  assert ::File.exist?(::File.join(dir, 'data', 'binary.jpg'))
190
190
  end
191
191
  end
192
+
193
+ test 'write crate with data entity that is neither file or directory' do
194
+ crate = ROCrate::Reader.read_directory(fixture_file('misc_data_entity_crate').path)
195
+ Dir.mktmpdir do |dir|
196
+ ROCrate::Writer.new(crate).write(dir)
197
+ Dir.chdir(dir) do
198
+ file_list = Dir.glob('*').sort
199
+ assert_equal ["ro-crate-metadata.json", "ro-crate-preview.html"], file_list
200
+ end
201
+ end
202
+ end
192
203
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ro-crate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.13
4
+ version: 0.4.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Finn Bacall
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-29 00:00:00.000000000 Z
11
+ date: 2022-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -175,6 +175,7 @@ files:
175
175
  - test/fixtures/directory_crate/ro-crate-preview.html
176
176
  - test/fixtures/file with spaces.txt
177
177
  - test/fixtures/info.txt
178
+ - test/fixtures/misc_data_entity_crate/ro-crate-metadata.json
178
179
  - test/fixtures/nested_directory.zip
179
180
  - test/fixtures/ro-crate-galaxy-sortchangecase/LICENSE
180
181
  - test/fixtures/ro-crate-galaxy-sortchangecase/README.md
@@ -195,6 +196,13 @@ files:
195
196
  - test/fixtures/sparse_directory_crate/ro-crate-metadata.jsonld
196
197
  - test/fixtures/sparse_directory_crate/ro-crate-preview.html
197
198
  - test/fixtures/sparse_directory_crate/unlisted_file.txt
199
+ - test/fixtures/unlinked_entity_crate/LICENSE
200
+ - test/fixtures/unlinked_entity_crate/README.md
201
+ - test/fixtures/unlinked_entity_crate/ro-crate-metadata.json
202
+ - test/fixtures/unlinked_entity_crate/sort-and-change-case.ga
203
+ - test/fixtures/unlinked_entity_crate/test/test1/input.bed
204
+ - test/fixtures/unlinked_entity_crate/test/test1/output_exp.bed
205
+ - test/fixtures/unlinked_entity_crate/test/test1/sort-and-change-case-test.yml
198
206
  - test/fixtures/workflow-0.2.0.zip
199
207
  - test/fixtures/workflow-0.2.0/Dockerfile
200
208
  - test/fixtures/workflow-0.2.0/README.md
@@ -2442,7 +2450,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
2442
2450
  - !ruby/object:Gem::Version
2443
2451
  version: '0'
2444
2452
  requirements: []
2445
- rubygems_version: 3.0.8
2453
+ rubygems_version: 3.1.6
2446
2454
  signing_key:
2447
2455
  specification_version: 4
2448
2456
  summary: Create, manipulate, read RO-Crates.