Skip to content

Commit 9bb1803

Browse files
committed
fix: some specs
1 parent 3a94271 commit 9bb1803

7 files changed

+54
-19
lines changed

lib/reqif/req_if_header.rb

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
require "lutaml/model"
1+
# lib/reqif/req_if_header.rb
2+
require_relative "time_helper"
23

34
module Reqif
45
class ReqIfHeader < Lutaml::Model::Serializable
6+
include TimeHelper
7+
58
attribute :identifier, :string
69
attribute :comment, :string
7-
attribute :creation_time, :time
10+
attribute :creation_time, :string # Changed from :time to :string
811
attribute :repository_id, :string
912
attribute :req_if_tool_id, :string
1013
attribute :req_if_version, :string
@@ -24,5 +27,13 @@ class ReqIfHeader < Lutaml::Model::Serializable
2427
map_element "SOURCE-TOOL-ID", to: :source_tool_id
2528
map_element "TITLE", to: :title
2629
end
30+
31+
def creation_time=(time_str)
32+
@creation_time = time_str
33+
end
34+
35+
def creation_time
36+
TimeHelper.parse_time(@creation_time)
37+
end
2738
end
2839
end

lib/reqif/time_helper.rb

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
require "time"
2+
3+
module Reqif
4+
module TimeHelper
5+
def self.parse_time(time_str)
6+
return nil if time_str.nil? || time_str.empty?
7+
Time.parse(time_str)
8+
rescue ArgumentError
9+
nil
10+
end
11+
end
12+
end

reqif.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
2323
spec.files = Dir.chdir(File.expand_path(__dir__)) do
2424
`git ls-files -z`
2525
.split("\x0")
26-
.reject { |f| f.match(%r{^(test|spec|features)/}) }
26+
.reject { |f| f.match(%r{^(test|features)/}) }
2727
end
2828
spec.bindir = "exe"
2929
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }

spec/reqif/data_types_spec.rb

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
# spec/reqif/data_types_spec.rb
12
RSpec.describe Reqif::Datatypes do
23
let(:datatypes_xml) do
34
<<~XML
4-
<DATATYPES>
5+
<DATATYPES xmlns="http://www.omg.org/spec/ReqIF/20110401/reqif.xsd">
56
<DATATYPE-DEFINITION-STRING IDENTIFIER="dt1" LAST-CHANGE="2023-10-26T12:00:00Z" LONG-NAME="String Type">
67
<MAX-LENGTH>255</MAX-LENGTH>
78
</DATATYPE-DEFINITION-STRING>
@@ -17,13 +18,15 @@
1718

1819
describe "data type definitions" do
1920
it "parses string data type" do
20-
string_type = datatypes.definition.find { |dt| dt.identifier == "dt1" }
21+
string_type = datatypes.datatype_definition_string.first
22+
expect(string_type.identifier).to eq("dt1")
2123
expect(string_type.long_name).to eq("String Type")
2224
expect(string_type.max_length).to eq(255)
2325
end
2426

2527
it "parses integer data type" do
26-
integer_type = datatypes.definition.find { |dt| dt.identifier == "dt2" }
28+
integer_type = datatypes.datatype_definition_integer.first
29+
expect(integer_type.identifier).to eq("dt2")
2730
expect(integer_type.long_name).to eq("Integer Type")
2831
expect(integer_type.max).to eq(100)
2932
expect(integer_type.min).to eq(0)

spec/reqif/doors_export_spec.rb

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1+
# spec/reqif/doors_export_spec.rb
12
RSpec.describe "IBM DOORS Export" do
23
let(:xml_file) { File.read("spec/fixtures/doors_export.xml") }
34
let(:reqif) { Reqif::ReqIf.from_xml(xml_file) }
45

56
it "parses DOORS export correctly" do
6-
expect(reqif.the_header.source_tool_id).to eq("IBM Rational DOORS Version 9.6.1")
7+
expect(reqif.the_header.req_if_header.source_tool_id).to eq("IBM Rational DOORS Version 9.6.1")
78

8-
datatypes = reqif.core_content.datatypes.definition
9-
expect(datatypes.map(&:long_name)).to include("String", "Integer", "Real", "Date")
9+
datatypes = reqif.core_content.req_if_content.datatypes
10+
expect(datatypes.datatype_definition_string).to be_present
11+
expect(datatypes.datatype_definition_integer).to be_present
12+
expect(datatypes.datatype_definition_real).to be_present
13+
expect(datatypes.datatype_definition_date).to be_present
1014

11-
spec_object = reqif.core_content.spec_objects.spec_object.first
12-
expect(spec_object.values.first.the_value).to eq("System Requirements")
15+
spec_object = reqif.core_content.req_if_content.spec_objects.spec_object.first
16+
value = spec_object.values.attribute_value_string.first
17+
expect(value.the_value).to eq("System Requirements")
1318
end
1419
end

spec/reqif/eclipse_export_spec.rb

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1+
# spec/reqif/eclipse_export_spec.rb
12
RSpec.describe "Eclipse RMF Export" do
23
let(:xml_file) { File.read("spec/fixtures/eclipse_sample.xml") }
34
let(:reqif) { Reqif::ReqIf.from_xml(xml_file) }
45

56
it "parses Eclipse RMF export correctly" do
6-
expect(reqif.the_header.req_if_tool_id).to eq("ProR (http://pror.org)")
7-
expect(reqif.the_header.title).to eq("Requirements Document")
7+
expect(reqif.the_header.req_if_header.req_if_tool_id).to eq("ProR (http://pror.org)")
8+
expect(reqif.the_header.req_if_header.title).to eq("Requirements Document")
89

9-
datatype = reqif.core_content.datatypes.definition.first
10-
expect(datatype.long_name).to eq("T_String32k")
11-
expect(datatype.max_length).to eq(32000)
10+
datatypes = reqif.core_content.req_if_content.datatypes
11+
string_type = datatypes.datatype_definition_string.first
12+
expect(string_type.long_name).to eq("T_String32k")
13+
expect(string_type.max_length).to eq(32000)
1214

13-
spec_type = reqif.core_content.spec_types.spec_object_type.first
15+
spec_type = reqif.core_content.req_if_content.spec_types.spec_object_type.first
1416
expect(spec_type.long_name).to eq("Requirement Type")
1517
end
1618
end

spec/reqif/req_if_header_spec.rb

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
# spec/reqif/req_if_header_spec.rb
12
RSpec.describe Reqif::ReqIfHeader do
23
let(:header_xml) do
34
<<~XML
4-
<REQ-IF-HEADER>
5+
<REQ-IF-HEADER xmlns="http://www.omg.org/spec/ReqIF/20110401/reqif.xsd">
56
<COMMENT>Example ReqIF file</COMMENT>
67
<CREATION-TIME>2023-10-26T12:00:00Z</CREATION-TIME>
78
<IDENTIFIER>_1234567890</IDENTIFIER>
@@ -18,7 +19,8 @@
1819
describe "attributes" do
1920
it "parses all header attributes" do
2021
expect(header.comment).to eq("Example ReqIF file")
21-
expect(header.creation_time).to eq(DateTime.parse("2023-10-26T12:00:00Z"))
22+
expect(header.creation_time).to be_a(Time)
23+
expect(header.creation_time.utc.iso8601).to eq("2023-10-26T12:00:00Z")
2224
expect(header.identifier).to eq("_1234567890")
2325
expect(header.req_if_tool_id).to eq("reqif-tool")
2426
expect(header.req_if_version).to eq("1.0")

0 commit comments

Comments
 (0)