relaton 1.17.0 → 1.17.1

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: 161865c4183f2125b3967ecf451cfc0473253d933b3f84d35684bef6b30a94dd
4
- data.tar.gz: 678698b76ead0a46765e462622df3e4670331843e563b043e644bb2210c44414
3
+ metadata.gz: 4c48cfe6f0f4984a5141f07a08d0aad1350910f07b87c3f6e028b91a1b81df17
4
+ data.tar.gz: 328a7973781a7c2061977fba41d914da92a459adc0c4e73d1827ac66149cbe4a
5
5
  SHA512:
6
- metadata.gz: ab8d13611095fc725320d7aa4d5ec6ef1b81ec987ce91853fc312980391e7b42f64c986ef8b47f1609a7021eef9a7bdacaf5fa6d32606a64a03801ee99029ab0
7
- data.tar.gz: 30f38ad4cb1b49c175f4616de286d2a94ff5bddf53712221fe0d915b2cb51795db2ab976c6c5cd2ca6e812e2788ad00e613d2ce9cc824067a8ab5096e6d16c72
6
+ metadata.gz: dfe07c36cc548cd44b664834062eaace4acb9a605b666373fa13eb5049e39ead615718151510750100632169add0195bc6414e309b5ecbe7268c1b4bbf0e8b2a
7
+ data.tar.gz: bdf5d46cc33412f1428882a10b343bf7e4a4042c45b67622fe1d8afcd02999f45786e3faccdba279f68c7b2a631f7f6d7671023e12a5f6d079033968521340af
@@ -10,7 +10,7 @@ module Relaton
10
10
  relaton_ogc relaton_calconnect relaton_omg relaton_un relaton_w3c
11
11
  relaton_ieee relaton_iho relaton_bipm relaton_ecma relaton_cie relaton_bsi
12
12
  relaton_cen relaton_iana relaton_3gpp relaton_oasis relaton_doi relaton_jis
13
- relaton_xsf relaton_ccsds
13
+ relaton_xsf relaton_ccsds relaton_etsi
14
14
  ].freeze
15
15
 
16
16
  include Singleton
@@ -1,3 +1,3 @@
1
1
  module Relaton
2
- VERSION = "1.17.0".freeze
2
+ VERSION = "1.17.1".freeze
3
3
  end
data/relaton.gemspec CHANGED
@@ -38,6 +38,7 @@ Gem::Specification.new do |spec|
38
38
  spec.add_dependency "relaton-cie", "~> 1.17.0"
39
39
  spec.add_dependency "relaton-doi", "~> 1.17.0"
40
40
  spec.add_dependency "relaton-ecma", "~> 1.17.0"
41
+ spec.add_dependency "relaton-etsi", "~> 1.17.0"
41
42
  spec.add_dependency "relaton-gb", "~> 1.17.0"
42
43
  spec.add_dependency "relaton-iana", "~> 1.17.0"
43
44
  spec.add_dependency "relaton-iec", "~> 1.17.0"
@@ -32,4 +32,42 @@ RSpec.describe Relaton::Processor do
32
32
  expect { subject.grammar_hash }.to raise_error StandardError
33
33
  end
34
34
  end
35
+
36
+ context "ETSI processor" do
37
+ before { Relaton::Registry.instance }
38
+ let(:processor) { Relaton::Registry.instance.by_type "ETSI" }
39
+
40
+ it "get method should call get method of ETSI" do
41
+ expect(RelatonEtsi::Bibliography).to receive(:get).with("code", nil, {}).and_return :item
42
+ expect(processor.get "code", nil, {}).to eq :item
43
+ end
44
+
45
+ it "fetch_data method should call fetch_data method of ETSI" do
46
+ expect(RelatonEtsi::DataFetcher).to receive(:fetch).with(output: "dir", format: "bibxml").and_return :item
47
+ expect(processor.fetch_data "etsi-csv", output: "dir", format: "bibxml").to eq :item
48
+ end
49
+
50
+ it "from_xml method should call from_xml method of ETSI" do
51
+ expect(RelatonEtsi::XMLParser).to receive(:from_xml).with("xml").and_return :item
52
+ expect(processor.from_xml "xml").to eq :item
53
+ end
54
+
55
+ it "hash_to_bib method should call hash_to_bib method of ETSI" do
56
+ expect(RelatonEtsi::HashConverter).to receive(:hash_to_bib).with(:hash).and_return title: "title"
57
+ expect(RelatonEtsi::BibliographicItem).to receive(:new).with(title: "title").and_return :item
58
+ expect(processor.hash_to_bib(:hash)).to eq :item
59
+ end
60
+
61
+ it "grammar_hash method should call grammar_hash method of ETSI" do
62
+ expect(RelatonEtsi).to receive(:grammar_hash).and_return :hash
63
+ expect(processor.grammar_hash).to eq :hash
64
+ end
65
+
66
+ it "remove index file" do
67
+ index = double "index"
68
+ expect(index).to receive(:remove_file)
69
+ expect(Relaton::Index).to receive(:find_or_create).with(:etsi, url: true, file: "index-v1.yaml").and_return index
70
+ processor.remove_index_file
71
+ end
72
+ end
35
73
  end
@@ -119,11 +119,18 @@ RSpec.describe Relaton::Registry do
119
119
  it "CCSDS" do
120
120
  expect(Relaton::Registry.instance.by_type("CCSDS")).to be_instance_of RelatonCcsds::Processor
121
121
  end
122
+
123
+ it "ETSI" do
124
+ expect(Relaton::Registry.instance.by_type("ETSI")).to be_instance_of RelatonEtsi::Processor
125
+ end
122
126
  end
123
127
 
124
128
  it "find processot by dataset" do
125
- expect(Relaton::Registry.instance
126
- .find_processor_by_dataset("nist-tech-pubs"))
129
+ expect(Relaton::Registry.instance.find_processor_by_dataset("nist-tech-pubs"))
127
130
  .to be_instance_of RelatonNist::Processor
128
131
  end
132
+
133
+ it "find processor by dataset" do
134
+ expect(Relaton::Registry.instance.find_processor_by_dataset "etsi-csv").to be_instance_of RelatonEtsi::Processor
135
+ end
129
136
  end
data/spec/relaton_spec.rb CHANGED
@@ -138,45 +138,45 @@ RSpec.describe Relaton::Db do
138
138
  end
139
139
 
140
140
  context "get GB reference" do
141
- # it "and cache it" do
142
- # VCR.use_cassette "gb_t_20223_2006" do
143
- # bib = @db.fetch "CN(GB/T 20223)", "2006", {}
144
- # expect(bib).to be_instance_of RelatonGb::GbBibliographicItem
145
- # expect(bib.to_xml(bibdata: true)).to include <<~XML
146
- # <project-number>GB/T 20223</project-number>
147
- # XML
148
- # expect(File.exist?("testcache")).to be true
149
- # expect(File.exist?("testcache2")).to be true
150
- # testcache = Relaton::DbCache.new "testcache"
151
- # expect(testcache["CN(GB/T 20223:2006)"]).to include <<~XML
152
- # <project-number>GB/T 20223</project-number>
153
- # XML
154
- # testcache = Relaton::DbCache.new "testcache2"
155
- # expect(testcache["CN(GB/T 20223:2006)"]).to include <<~XML
156
- # <project-number>GB/T 20223</project-number>
157
- # XML
158
- # end
159
- # end
160
-
161
- # it "with year" do
162
- # VCR.use_cassette "gb_t_20223_2006" do
163
- # bib = @db.fetch "CN(GB/T 20223-2006)", nil, {}
164
- # expect(bib).to be_instance_of RelatonGb::GbBibliographicItem
165
- # expect(bib.to_xml(bibdata: true)).to include <<~XML
166
- # <project-number>GB/T 20223</project-number>
167
- # XML
168
- # expect(File.exist?("testcache")).to be true
169
- # expect(File.exist?("testcache2")).to be true
170
- # testcache = Relaton::DbCache.new "testcache"
171
- # expect(testcache["CN(GB/T 20223:2006)"]).to include <<~XML
172
- # <project-number>GB/T 20223</project-number>
173
- # XML
174
- # testcache = Relaton::DbCache.new "testcache2"
175
- # expect(testcache["CN(GB/T 20223:2006)"]).to include <<~XML
176
- # <project-number>GB/T 20223</project-number>
177
- # XML
178
- # end
179
- # end
141
+ it "and cache it" do
142
+ VCR.use_cassette "gb_t_20223_2006" do
143
+ bib = @db.fetch "CN(GB/T 20223)", "2006", {}
144
+ expect(bib).to be_instance_of RelatonGb::GbBibliographicItem
145
+ expect(bib.to_xml(bibdata: true)).to include <<~XML
146
+ <project-number>GB/T 20223</project-number>
147
+ XML
148
+ expect(File.exist?("testcache")).to be true
149
+ expect(File.exist?("testcache2")).to be true
150
+ testcache = Relaton::DbCache.new "testcache"
151
+ expect(testcache["CN(GB/T 20223-2006)"]).to include <<~XML
152
+ <project-number>GB/T 20223</project-number>
153
+ XML
154
+ testcache = Relaton::DbCache.new "testcache2"
155
+ expect(testcache["CN(GB/T 20223-2006)"]).to include <<~XML
156
+ <project-number>GB/T 20223</project-number>
157
+ XML
158
+ end
159
+ end
160
+
161
+ it "with year" do
162
+ VCR.use_cassette "gb_t_20223_2006" do
163
+ bib = @db.fetch "CN(GB/T 20223-2006)", nil, {}
164
+ expect(bib).to be_instance_of RelatonGb::GbBibliographicItem
165
+ expect(bib.to_xml(bibdata: true)).to include <<~XML
166
+ <project-number>GB/T 20223</project-number>
167
+ XML
168
+ expect(File.exist?("testcache")).to be true
169
+ expect(File.exist?("testcache2")).to be true
170
+ testcache = Relaton::DbCache.new "testcache"
171
+ expect(testcache["CN(GB/T 20223-2006)"]).to include <<~XML
172
+ <project-number>GB/T 20223</project-number>
173
+ XML
174
+ testcache = Relaton::DbCache.new "testcache2"
175
+ expect(testcache["CN(GB/T 20223-2006)"]).to include <<~XML
176
+ <project-number>GB/T 20223</project-number>
177
+ XML
178
+ end
179
+ end
180
180
  end
181
181
 
182
182
  it "get RFC reference and cache it" do
@@ -355,6 +355,15 @@ RSpec.describe Relaton::Db do
355
355
  expect(bib.docidentifier.first.id).to eq "XEP 0001"
356
356
  end
357
357
 
358
+ it "get ETSI reference" do
359
+ docid = RelatonBib::DocumentIdentifier.new(id: "ETSI EN 300 175-8", type: "ETSI")
360
+ item = RelatonEtsi::BibliographicItem.new docid: [docid]
361
+ expect(RelatonEtsi::Bibliography).to receive(:get).with("ETSI EN 300 175-8", nil, {}).and_return item
362
+ bib = @db.fetch "ETSI EN 300 175-8"
363
+ expect(bib).to be_instance_of RelatonEtsi::BibliographicItem
364
+ expect(bib.docidentifier.first.id).to eq "ETSI EN 300 175-8"
365
+ end
366
+
358
367
  context "get combined documents" do
359
368
  context "ISO" do
360
369
  it "included" do
@@ -39,21 +39,21 @@ http_interactions:
39
39
  X-Xss-Protection:
40
40
  - 1; mode=block
41
41
  X-Github-Request-Id:
42
- - 6ACA:263D:D71965:10FED1A:6563F706
42
+ - 11E4:4F03:4125C0:503C5F:656F52FF
43
43
  Accept-Ranges:
44
44
  - bytes
45
45
  Date:
46
- - Mon, 27 Nov 2023 01:55:22 GMT
46
+ - Tue, 05 Dec 2023 16:42:40 GMT
47
47
  Via:
48
48
  - 1.1 varnish
49
49
  X-Served-By:
50
- - cache-pdk-kpdk1780035-PDK
50
+ - cache-pdk-kpdk1780129-PDK
51
51
  X-Cache:
52
52
  - MISS
53
53
  X-Cache-Hits:
54
54
  - '0'
55
55
  X-Timer:
56
- - S1701050122.300647,VS0,VE158
56
+ - S1701794560.721009,VS0,VE285
57
57
  Vary:
58
58
  - Authorization,Accept-Encoding,Origin
59
59
  Access-Control-Allow-Origin:
@@ -61,9 +61,9 @@ http_interactions:
61
61
  Cross-Origin-Resource-Policy:
62
62
  - cross-origin
63
63
  X-Fastly-Request-Id:
64
- - 4fe800c6af7705f1b714a8e04007433d2c95ef7b
64
+ - f683743f80297a5c7399717914acb4a5a05fd219
65
65
  Expires:
66
- - Mon, 27 Nov 2023 02:00:22 GMT
66
+ - Tue, 05 Dec 2023 16:47:40 GMT
67
67
  Source-Age:
68
68
  - '0'
69
69
  body:
@@ -11299,7 +11299,7 @@ http_interactions:
11299
11299
  HgMUAAAACAA6cm9XZto2RTS1BwAWXlAADQAYAAAAAAABAAAApIEAAAAAaW5k
11300
11300
  ZXgtdjEueWFtbFVUBQADENNUZXV4CwABBOkDAAAEfwAAAFBLBQYAAAAAAQAB
11301
11301
  AFMAAAB7tQcAAAA=
11302
- recorded_at: Mon, 27 Nov 2023 01:55:22 GMT
11302
+ recorded_at: Tue, 05 Dec 2023 16:42:40 GMT
11303
11303
  - request:
11304
11304
  method: get
11305
11305
  uri: https://raw.githubusercontent.com/relaton/relaton-data-3gpp/main/data/TR_00.01U_UMTS_3.0.0.yaml
@@ -11313,6 +11313,8 @@ http_interactions:
11313
11313
  - "*/*"
11314
11314
  User-Agent:
11315
11315
  - Ruby
11316
+ Host:
11317
+ - raw.githubusercontent.com
11316
11318
  response:
11317
11319
  status:
11318
11320
  code: 200
@@ -11339,21 +11341,21 @@ http_interactions:
11339
11341
  X-Xss-Protection:
11340
11342
  - 1; mode=block
11341
11343
  X-Github-Request-Id:
11342
- - FA38:9DA8:161F5FD:1B269AA:6563F70E
11344
+ - D61C:48FC:4B5092:59D776:656F5302
11343
11345
  Accept-Ranges:
11344
11346
  - bytes
11345
11347
  Date:
11346
- - Mon, 27 Nov 2023 01:55:26 GMT
11348
+ - Tue, 05 Dec 2023 16:42:43 GMT
11347
11349
  Via:
11348
11350
  - 1.1 varnish
11349
11351
  X-Served-By:
11350
- - cache-pdk-kpdk1780083-PDK
11352
+ - cache-pdk-kpdk1780024-PDK
11351
11353
  X-Cache:
11352
11354
  - MISS
11353
11355
  X-Cache-Hits:
11354
11356
  - '0'
11355
11357
  X-Timer:
11356
- - S1701050126.978850,VS0,VE223
11358
+ - S1701794563.329136,VS0,VE154
11357
11359
  Vary:
11358
11360
  - Authorization,Accept-Encoding,Origin
11359
11361
  Access-Control-Allow-Origin:
@@ -11361,9 +11363,9 @@ http_interactions:
11361
11363
  Cross-Origin-Resource-Policy:
11362
11364
  - cross-origin
11363
11365
  X-Fastly-Request-Id:
11364
- - b95b0612421e75a14fddd2d60ac6a4c7103edc2a
11366
+ - 45c52a8b760e95b1664943a6195e6ec4f0a50f44
11365
11367
  Expires:
11366
- - Mon, 27 Nov 2023 02:00:26 GMT
11368
+ - Tue, 05 Dec 2023 16:47:43 GMT
11367
11369
  Source-Age:
11368
11370
  - '0'
11369
11371
  body:
@@ -11404,5 +11406,5 @@ http_interactions:
11404
11406
  bWVldGluZzogU01HLTI4CiAgZnJlZXplX3N0YWdlMl9tZWV0aW5nOiBTTUct
11405
11407
  MjgKICBmcmVlemVfc3RhZ2UzX21lZXRpbmc6IFNNRy0yOAogIGNsb3NlX21l
11406
11408
  ZXRpbmc6IFNQLTI4CiAgcHJvamVjdF9lbmQ6ICcxOTk5LTAyLTEyJwo=
11407
- recorded_at: Mon, 27 Nov 2023 01:55:26 GMT
11409
+ recorded_at: Tue, 05 Dec 2023 16:42:43 GMT
11408
11410
  recorded_with: VCR 6.2.0
@@ -13,6 +13,8 @@ http_interactions:
13
13
  - "*/*"
14
14
  User-Agent:
15
15
  - Ruby
16
+ Host:
17
+ - api.relaton.org
16
18
  response:
17
19
  status:
18
20
  code: 200
@@ -25,27 +27,27 @@ http_interactions:
25
27
  Connection:
26
28
  - keep-alive
27
29
  Date:
28
- - Mon, 27 Nov 2023 01:56:09 GMT
30
+ - Tue, 05 Dec 2023 16:43:26 GMT
29
31
  X-Amzn-Requestid:
30
- - 0335c18a-9e5a-453a-bd05-2d4493ff348f
32
+ - 88968a1b-e582-47e4-8e08-ffc11fefacb0
31
33
  Access-Control-Allow-Origin:
32
34
  - "*"
33
35
  Access-Control-Allow-Headers:
34
36
  - Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token
35
37
  X-Amz-Apigw-Id:
36
- - PCOOoGFXIAMEpVw=
38
+ - PensrHqYIAMEh2A=
37
39
  Access-Control-Allow-Methods:
38
40
  - GET, POST, OPTIONS
39
41
  X-Amzn-Trace-Id:
40
- - Root=1-6563f72a-6cd241bc287ba8a67a95a7ee;Sampled=0;lineage=521d48d5:0
42
+ - Root=1-656f531d-251edaf641248c0a0f364242;Sampled=0;lineage=521d48d5:0
41
43
  X-Cache:
42
44
  - Miss from cloudfront
43
45
  Via:
44
- - 1.1 0a576c2dd3353021ea1e162ded4d3a7c.cloudfront.net (CloudFront)
46
+ - 1.1 812defed1167ca00304e9ce555dcf6e2.cloudfront.net (CloudFront)
45
47
  X-Amz-Cf-Pop:
46
48
  - ATL51-C1
47
49
  X-Amz-Cf-Id:
48
- - YH0okkeNR7fj-Qv5Ljpr72dITOlVsS60NyvmUppIDvIm6GujDop0lw==
50
+ - QlVdV_CYpctbsOSHcjpChAXOOdlfeMWFOR2a0SPBh_LCkSo93IauLg==
49
51
  body:
50
52
  encoding: UTF-8
51
53
  base64_string: |
@@ -115,5 +117,5 @@ http_interactions:
115
117
  dHJ1Y3R1cmVkaWRlbnRpZmllciB0eXBlPSJJU08iPgogICAgICA8cHJvamVj
116
118
  dC1udW1iZXI+SVNPIDE5MTE1PC9wcm9qZWN0LW51bWJlcj4KICAgIDwvc3Ry
117
119
  dWN0dXJlZGlkZW50aWZpZXI+CiAgPC9leHQ+CjwvYmliZGF0YT4=
118
- recorded_at: Mon, 27 Nov 2023 01:56:09 GMT
120
+ recorded_at: Tue, 05 Dec 2023 16:43:25 GMT
119
121
  recorded_with: VCR 6.2.0
@@ -33,7 +33,7 @@ http_interactions:
33
33
  Server:
34
34
  - nginx
35
35
  Date:
36
- - Mon, 27 Nov 2023 01:56:10 GMT
36
+ - Tue, 05 Dec 2023 16:43:26 GMT
37
37
  Content-Type:
38
38
  - application/json; charset=UTF-8
39
39
  Transfer-Encoding:
@@ -319,11 +319,13 @@ http_interactions:
319
319
  dGl2ZSI6eyJuYkhpdHMiOnRydWUsInR5cG8iOnRydWV9LCJxdWVyeSI6IklT
320
320
  TyAxOTExNS0yIiwicGFyYW1zIjoicXVlcnk9SVNPKzE5MTE1LTImaGl0c1Bl
321
321
  clBhZ2U9MTAwJmZpbHRlcnM9Y2F0ZWdvcnklM0FzdGFuZGFyZCIsInF1ZXJ5
322
- SUQiOiI2MTg2N2Q5NjYzOTE4YmE2ZGIyNmIwMDU3ZWY5Y2NiMiIsIl9hdXRv
323
- bWF0aWNJbnNpZ2h0cyI6dHJ1ZSwicHJvY2Vzc2luZ1RpbWVNUyI6MSwicHJv
324
- Y2Vzc2luZ1RpbWluZ3NNUyI6eyJfcmVxdWVzdCI6eyJyb3VuZFRyaXAiOjEx
325
- NH19fQ==
326
- recorded_at: Mon, 27 Nov 2023 01:56:10 GMT
322
+ SUQiOiIyYWJkMGZiYzIzYjUwOWE0ZTc5ODk1ZTgxNzViOTc4ZSIsIl9hdXRv
323
+ bWF0aWNJbnNpZ2h0cyI6dHJ1ZSwicmVuZGVyaW5nQ29udGVudCI6e30sInBy
324
+ b2Nlc3NpbmdUaW1lTVMiOjIsInByb2Nlc3NpbmdUaW1pbmdzTVMiOnsiX3Jl
325
+ cXVlc3QiOnsicm91bmRUcmlwIjoxMzJ9LCJnZXRJZHgiOnsibG9hZCI6eyJ0
326
+ b3RhbCI6MX0sInRvdGFsIjoxfSwidG90YWwiOjJ9LCJzZXJ2ZXJUaW1lTVMi
327
+ OjJ9
328
+ recorded_at: Tue, 05 Dec 2023 16:43:26 GMT
327
329
  - request:
328
330
  method: get
329
331
  uri: https://www.iso.org/contents/data/standard/06/70/67039.html
@@ -337,6 +339,8 @@ http_interactions:
337
339
  - "*/*"
338
340
  User-Agent:
339
341
  - Ruby
342
+ Host:
343
+ - www.iso.org
340
344
  response:
341
345
  status:
342
346
  code: 301
@@ -351,19 +355,19 @@ http_interactions:
351
355
  Set-Cookie:
352
356
  - BIGipServerpool_prod_iso_www-jahia=747131274.36895.0000; path=/; Httponly;
353
357
  Secure
354
- - JSESSIONID=795B6207242D41D9A2D638DD8BEABD6B; Path=/; Secure; HttpOnly
358
+ - JSESSIONID=7A797ED29CA178865819A841370262DD; Path=/; Secure; HttpOnly
355
359
  Location:
356
360
  - "/standard/67039.html"
357
361
  Content-Length:
358
362
  - '0'
359
363
  Date:
360
- - Mon, 27 Nov 2023 03:56:11 IST
364
+ - Tue, 05 Dec 2023 16:43:27 GMT
361
365
  Strict-Transport-Security:
362
366
  - max-age=31536000; includeSubDomains
363
367
  body:
364
368
  encoding: UTF-8
365
369
  base64_string: ''
366
- recorded_at: Mon, 27 Nov 2023 01:56:11 GMT
370
+ recorded_at: Tue, 05 Dec 2023 16:43:28 GMT
367
371
  - request:
368
372
  method: get
369
373
  uri: https://www.iso.org/standard/67039.html
@@ -377,6 +381,8 @@ http_interactions:
377
381
  - "*/*"
378
382
  User-Agent:
379
383
  - Ruby
384
+ Host:
385
+ - www.iso.org
380
386
  response:
381
387
  status:
382
388
  code: 200
@@ -389,9 +395,9 @@ http_interactions:
389
395
  Pragma:
390
396
  - no-cache
391
397
  Set-Cookie:
392
- - BIGipServerpool_prod_iso_www-jahia=730354058.36895.0000; path=/; Httponly;
398
+ - BIGipServerpool_prod_iso_www-jahia=713576842.36895.0000; path=/; Httponly;
393
399
  Secure
394
- - JSESSIONID=884964E5ED0AF2C3D8ED1063AD0449C8; Path=/; Secure; HttpOnly
400
+ - JSESSIONID=4204EF9E2516C1347D805244052C8288; Path=/; Secure; HttpOnly
395
401
  Vary:
396
402
  - accept-encoding
397
403
  Content-Type:
@@ -399,7 +405,7 @@ http_interactions:
399
405
  Transfer-Encoding:
400
406
  - chunked
401
407
  Date:
402
- - Mon, 27 Nov 2023 01:56:11 GMT
408
+ - Tue, 05 Dec 2023 16:43:27 GMT
403
409
  Strict-Transport-Security:
404
410
  - max-age=31536000; includeSubDomains
405
411
  body:
@@ -2021,7 +2027,7 @@ http_interactions:
2021
2027
  ICAgICAgPGRpdiBjbGFzcz0icG93ZXJlZGJ5LXR4dCI+UG93ZXJlZCBieTwv
2022
2028
  ZGl2PgogICAgICAgIDwvZGl2PgogICAgICA8L2Rpdj4KICAgIDwvZm9vdGVy
2023
2029
  PgogICAgPC9ib2R5Pgo8L2h0bWw+
2024
- recorded_at: Mon, 27 Nov 2023 01:56:12 GMT
2030
+ recorded_at: Tue, 05 Dec 2023 16:43:28 GMT
2025
2031
  - request:
2026
2032
  method: get
2027
2033
  uri: https://www.iso.org/fr/standard/67039.html
@@ -2035,6 +2041,8 @@ http_interactions:
2035
2041
  - "*/*"
2036
2042
  User-Agent:
2037
2043
  - Ruby
2044
+ Host:
2045
+ - www.iso.org
2038
2046
  response:
2039
2047
  status:
2040
2048
  code: 200
@@ -2047,9 +2055,9 @@ http_interactions:
2047
2055
  Pragma:
2048
2056
  - no-cache
2049
2057
  Set-Cookie:
2050
- - BIGipServerpool_prod_iso_www-jahia=713576842.36895.0000; path=/; Httponly;
2058
+ - BIGipServerpool_prod_iso_www-jahia=747131274.36895.0000; path=/; Httponly;
2051
2059
  Secure
2052
- - JSESSIONID=E05E88F6B408E2EC60EA5EBAD90AEADF; Path=/; Secure; HttpOnly
2060
+ - JSESSIONID=17112027A292F5EA943221E3534F067C; Path=/; Secure; HttpOnly
2053
2061
  Vary:
2054
2062
  - accept-encoding
2055
2063
  Content-Type:
@@ -2057,7 +2065,7 @@ http_interactions:
2057
2065
  Transfer-Encoding:
2058
2066
  - chunked
2059
2067
  Date:
2060
- - Mon, 27 Nov 2023 01:56:12 GMT
2068
+ - Tue, 05 Dec 2023 16:43:29 GMT
2061
2069
  Strict-Transport-Security:
2062
2070
  - max-age=31536000; includeSubDomains
2063
2071
  body:
@@ -3715,5 +3723,5 @@ http_interactions:
3715
3723
  c3M9InBvd2VyZWRieS10eHQiPkTDqXZlbG9wcMOpIHBhcjwvZGl2PgogICAg
3716
3724
  ICAgIDwvZGl2PgogICAgICA8L2Rpdj4KICAgIDwvZm9vdGVyPgogICAgPC9i
3717
3725
  b2R5Pgo8L2h0bWw+
3718
- recorded_at: Mon, 27 Nov 2023 01:56:13 GMT
3726
+ recorded_at: Tue, 05 Dec 2023 16:43:29 GMT
3719
3727
  recorded_with: VCR 6.2.0
@@ -29,7 +29,7 @@ http_interactions:
29
29
  Content-Type:
30
30
  - application/zip
31
31
  Etag:
32
- - W/"96c6938e199952224305c12b96efe29fd5b4bbac104f70aa0a30793426479824"
32
+ - W/"5aac1836dd6142e848fc61a3889f7b13b0d33f4d858c629e599117d770768f75"
33
33
  Strict-Transport-Security:
34
34
  - max-age=31536000
35
35
  X-Content-Type-Options:
@@ -39,21 +39,21 @@ http_interactions:
39
39
  X-Xss-Protection:
40
40
  - 1; mode=block
41
41
  X-Github-Request-Id:
42
- - D1DE:4815:DD88AF:116B308:6563F701
42
+ - 9E06:2025:464FAC:54AAC3:656F52F7
43
43
  Accept-Ranges:
44
44
  - bytes
45
45
  Date:
46
- - Mon, 27 Nov 2023 01:55:15 GMT
46
+ - Tue, 05 Dec 2023 16:42:33 GMT
47
47
  Via:
48
48
  - 1.1 varnish
49
49
  X-Served-By:
50
- - cache-pdk-kpdk1780105-PDK
50
+ - cache-pdk-kpdk1780064-PDK
51
51
  X-Cache:
52
52
  - MISS
53
53
  X-Cache-Hits:
54
54
  - '0'
55
55
  X-Timer:
56
- - S1701050116.634591,VS0,VE105
56
+ - S1701794553.915273,VS0,VE140
57
57
  Vary:
58
58
  - Authorization,Accept-Encoding,Origin
59
59
  Access-Control-Allow-Origin:
@@ -61,16 +61,16 @@ http_interactions:
61
61
  Cross-Origin-Resource-Policy:
62
62
  - cross-origin
63
63
  X-Fastly-Request-Id:
64
- - 5f31af81877138266da651f0aa47443700dadba2
64
+ - f72636d39555a30af2df73fff666ab58821d9773
65
65
  Expires:
66
- - Mon, 27 Nov 2023 02:00:15 GMT
66
+ - Tue, 05 Dec 2023 16:47:33 GMT
67
67
  Source-Age:
68
68
  - '0'
69
69
  body:
70
70
  encoding: UTF-8
71
71
  base64_string: |
72
- UEsDBBQAAAAIAOdweldKI92FugUAALwsAAANABwAaW5kZXgtdjEueWFtbFVU
73
- CQADElFjZRJRY2V1eAsAAQTpAwAABH8AAACF2M+KHDcQBvC7n2JeYOMu/W3t
72
+ UEsDBBQAAAAIABpxhVdKI92FugUAALwsAAANABwAaW5kZXgtdjEueWFtbFVU
73
+ CQAD8y5vZfMub2V1eAsAAQTpAwAABH8AAACF2M+KHDcQBvC7n2JeYOMu/W3t
74
74
  bdmJwYfYZibYx8bgBAz2LRjy9pGqNCIw9X1zrv1taVpV3VI9PT29eTo9f//2
75
75
  fHp9ffvy7edpS5s8h21Lb06n57+///jr+fTt6z9f376+Hi/nP44RPkb4t3+/
76
76
  /vxxbwO3gdnIbWQ2cZuwzfZ7M7DZfm8GNnAbmI3cRmYTt8m11yEzkNfhMsuJ
@@ -103,10 +103,10 @@ http_interactions:
103
103
  j3yj3j5OxNvXCXuhh5ltfjPQGXB+OJj353PLownd8v6Mbnk0pVven9Mt/+AQ
104
104
  uwk7xfYwmgQt78+Clq9gSrF8decUy++P/M59e+Qb9WED84CbD5s7E1geTVqW
105
105
  92cty6N5y/L+zGV5NCdY3p8VLI/mBcv7M4Pl0dxgeX92sDz6Wi0Pvlc3Xx+8
106
- v0P93/v7P1BLAQIeAxQAAAAIAOdweldKI92FugUAALwsAAANABgAAAAAAAEA
107
- AACkgQAAAABpbmRleC12MS55YW1sVVQFAAMSUWNldXgLAAEE6QMAAAR/AAAA
106
+ v0P93/v7P1BLAQIeAxQAAAAIABpxhVdKI92FugUAALwsAAANABgAAAAAAAEA
107
+ AACkgQAAAABpbmRleC12MS55YW1sVVQFAAPzLm9ldXgLAAEE6QMAAAR/AAAA
108
108
  UEsFBgAAAAABAAEAUwAAAAEGAAAAAA==
109
- recorded_at: Mon, 27 Nov 2023 01:55:15 GMT
109
+ recorded_at: Tue, 05 Dec 2023 16:42:32 GMT
110
110
  - request:
111
111
  method: get
112
112
  uri: https://raw.githubusercontent.com/relaton/relaton-data-calconnect/main/data/CC_DIR_10005_2019.yaml
@@ -128,7 +128,7 @@ http_interactions:
128
128
  Connection:
129
129
  - keep-alive
130
130
  Content-Length:
131
- - '1162'
131
+ - '1170'
132
132
  Cache-Control:
133
133
  - max-age=300
134
134
  Content-Security-Policy:
@@ -136,7 +136,7 @@ http_interactions:
136
136
  Content-Type:
137
137
  - text/plain; charset=utf-8
138
138
  Etag:
139
- - W/"9208026e5ca9b923e6d7913b95eeecd29b77e30597a361c12d716b04362e7d63"
139
+ - W/"8cdcd3db5343bf7572950ec3ac9c9ae07bc1f748dc3d74d0b3be0da8bc4b03e7"
140
140
  Strict-Transport-Security:
141
141
  - max-age=31536000
142
142
  X-Content-Type-Options:
@@ -146,21 +146,21 @@ http_interactions:
146
146
  X-Xss-Protection:
147
147
  - 1; mode=block
148
148
  X-Github-Request-Id:
149
- - 4598:8B21:D5B91B:10F39AD:6563F702
149
+ - F5A6:2FDC:464F3E:554EF1:656F52F9
150
150
  Accept-Ranges:
151
151
  - bytes
152
152
  Date:
153
- - Mon, 27 Nov 2023 01:55:15 GMT
153
+ - Tue, 05 Dec 2023 16:42:33 GMT
154
154
  Via:
155
155
  - 1.1 varnish
156
156
  X-Served-By:
157
- - cache-pdk-kpdk1780145-PDK
157
+ - cache-pdk-kpdk1780117-PDK
158
158
  X-Cache:
159
159
  - MISS
160
160
  X-Cache-Hits:
161
161
  - '0'
162
162
  X-Timer:
163
- - S1701050116.882959,VS0,VE90
163
+ - S1701794553.101562,VS0,VE173
164
164
  Vary:
165
165
  - Authorization,Accept-Encoding,Origin
166
166
  Access-Control-Allow-Origin:
@@ -168,15 +168,15 @@ http_interactions:
168
168
  Cross-Origin-Resource-Policy:
169
169
  - cross-origin
170
170
  X-Fastly-Request-Id:
171
- - db2d8741d79f24097336b2dd97453ed1e7020322
171
+ - d9385fb1c08c0f458660fd153d137f594c63dea6
172
172
  Expires:
173
- - Mon, 27 Nov 2023 02:00:15 GMT
173
+ - Tue, 05 Dec 2023 16:47:33 GMT
174
174
  Source-Age:
175
175
  - '0'
176
176
  body:
177
177
  encoding: ASCII-8BIT
178
178
  base64_string: |
179
- LS0tCnNjaGVtYS12ZXJzaW9uOiB2MS4yLjUKaWQ6IENDLURJUjEwMDA1LTIw
179
+ LS0tCnNjaGVtYS12ZXJzaW9uOiB2MS4yLjcKaWQ6IENDLURJUjEwMDA1LTIw
180
180
  MTkKdGl0bGU6Ci0gY29udGVudDogR3VpZGVsaW5lcyBmb3IgdGhlIGltcGxl
181
181
  bWVudGF0aW9uIG9mIHRoZSBDYWxDb25uZWN0IHBhdGVudCBwb2xpY3kKICBs
182
182
  YW5ndWFnZToKICAtIGVuCiAgZm9ybWF0OiB0ZXh0L3BsYWluCmxpbms6Ci0g
@@ -200,7 +200,7 @@ http_interactions:
200
200
  Z2U6Ci0gZW4Kc2NyaXB0OgotIExhdG4KZG9jc3RhdHVzOgogIHN0YWdlOgog
201
201
  ICAgdmFsdWU6IHB1Ymxpc2hlZApjb3B5cmlnaHQ6Ci0gb3duZXI6CiAgLSBu
202
202
  YW1lOgogICAgLSBjb250ZW50OiBDYWxDb25uZWN0CiAgZnJvbTogJzIwMTkn
203
- CmRvY3R5cGU6IGRpcmVjdGl2ZQplZGl0b3JpYWxncm91cDoKLSBuYW1lOiBQ
204
- VUJMSVNICmV4dDoKICBzY2hlbWEtdmVyc2lvbjogdjEuMC4wCg==
205
- recorded_at: Mon, 27 Nov 2023 01:55:15 GMT
203
+ CmRvY3R5cGU6CiAgdHlwZTogZGlyZWN0aXZlCmVkaXRvcmlhbGdyb3VwOgot
204
+ IG5hbWU6IFBVQkxJU0gKZXh0OgogIHNjaGVtYS12ZXJzaW9uOiB2MS4wLjAK
205
+ recorded_at: Tue, 05 Dec 2023 16:42:33 GMT
206
206
  recorded_with: VCR 6.2.0