Class: ODDB::AnalysisParse::TestAppendixListParser

Inherits:
Test::Unit::TestCase
  • Object
show all
Defined in:
ext/analysisparse/test/test_appendix_parser.rb

Instance Method Summary collapse

Instance Method Details

#setupObject



12
13
14
# File 'ext/analysisparse/test/test_appendix_parser.rb', line 12

def setup
	@parser = AppendixListParser.new
end

#test_fr_parse_page__1Object



224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
# File 'ext/analysisparse/test/test_appendix_parser.rb', line 224

def test_fr_parse_page__1
	src = <<-EOS
5.3 Annexe C Analyses prescrites par des sages-femmes
(art. 62 1er al. let. c OAMal)
Préambule
Les sages-femmes sont tenues de confier l'éxecution des analyses figurant sur cette liste à des laboratoires au sens de l'article 54 3e alinéa OAMal
Liste des analyses
Rév. No pos. A TP Dénomination (liste sages-femmes)
C 8001.00 18 ABO, groupe sanguin et antigène D faible si Rhésus D nég.) selon les recommandations STS CRS "Sérologie érythrocytaire chez le patient"
8017.00 * 45 Alpha-1-foetoprotéine (AFP)
C 8200.00 35 érythrocytes, alloanticorps anti~, test de recherche selon les recommandation STS CRS "Sérologie érythrocytaire chez le patient"
C 8269.00 15 Hémogramme II (automatisé): hémogramme I, plus thromboytes
Limitation: pas avec la méthode QBC
8580.00 4 Status urinaire partiel (5-10 paramètres)
8606.00 30 Guthrie, test de ~
9116.40 * 12 HIV 1+2, dépistage des anticorps (par test rapide), ql
	45
	EOS
	begin
		result = @parser.parse_page(src, 45)
	end
	expected_first = {
		:code					=>	'8001.00',
		:group				=>	'8001',
		:position			=>	'00',
		:taxpoints		=>	18,
		:description	=>	'ABO, groupe sanguin et antigène D faible si Rhésus D nég.) selon les recommandations STS CRS "Sérologie érythrocytaire chez le patient"',
		:analysis_revision		=>	'C',
		:list_title			=>	nil,
		:taxpoint_type	=>	nil,
		:permission			=>	nil,
	}
	expected_last = {
		:code					=>	'9116.40',
		:group				=>	'9116',
		:position			=>	'40',
		:description	=>	'HIV 1+2, dépistage des anticorps (par test rapide), ql',
		:list_title		=>	nil,
		:taxpoints		=>	12,
		:taxpoint_type	=>	nil,
		:permission		=>	nil,
		:anonymous		=>	true,
	}
	expected_size = 7 
	assert_equal(expected_first, result.first)
	assert_equal(expected_last, result.last)
	assert_equal(expected_size, result.size)
end

#test_parse_line__1Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'ext/analysisparse/test/test_appendix_parser.rb', line 15

def test_parse_line__1
	src = <<-EOS
C 8001.00 18 ABO-Blutgruppen und Antigen D Bestimmung (inkl. Ausschluss schwaches D Antigen bei Rhesus D negativ) nach Empfehlungen BSD SRK "Erythrozytenserologische Unter- suchungen an Patientenproben"
	EOS
	begin
		result = @parser.parse_line(src)
	rescue AmbigousParseException	=> e
		puts e.inspect
	end
	expected = {
	:code						=>	'8001.00',
	:group					=>	'8001',
	:position				=>	'00',
	:taxpoints			=>	18,
	:analysis_revision				=>	'C',
	:description		=>	'ABO-Blutgruppen und Antigen D Bestimmung (inkl. Ausschluss schwaches D Antigen bei Rhesus D negativ) nach Empfehlungen BSD SRK "Erythrozytenserologische Untersuchungen an Patientenproben"',
	:permission			=>	nil,
	:list_title			=>	nil,
	:taxpoint_type	=>	nil,
	}
	assert_equal(expected, result)
end

#test_parse_line__2Object



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'ext/analysisparse/test/test_appendix_parser.rb', line 37

def test_parse_line__2
	src =<<-EOS
8017.00 * 45 Alpha-1-Fetoprotein (AFP)
	EOS
	begin
		result = @parser.parse_line(src)
	rescue AmbigousParseException	=>	e
		puts e.inspect
	end
	expected = {
	:code					=>	'8017.00',
	:group				=>	'8017',
	:position			=>	'00',
	:taxpoints		=>	45,
	:description	=>	'Alpha-1-Fetoprotein (AFP)',
	:anonymous		=>	true,
	:list_title		=>	nil,
	:taxpoint_type	=>	nil,
	:permission		=>	nil,
	}
	assert_equal(expected, result)
end

#test_parse_line__3Object



59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'ext/analysisparse/test/test_appendix_parser.rb', line 59

def test_parse_line__3
	src = <<-EOS
8606.00 30 Guthrie-Test
	EOS
	begin
		result = @parser.parse_line(src)
	end
	expected = {
		:code					=>	'8606.00',
		:group				=>	'8606',
		:position			=>	'00',
		:taxpoints		=>	30,
		:description	=>	'Guthrie-Test',			
		:list_title		=>	nil,
		:taxpoint_type	=>	nil,
		:permission		=>	nil,
	}
	assert_equal(expected, result)
end

#test_parse_line__4Object



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'ext/analysisparse/test/test_appendix_parser.rb', line 78

def test_parse_line__4
	src = <<-EOS
C 8269.00 15 Hämatogramm II (automatisiert): Hämatogramm I, plus Thrombozyten 
Limitation: nicht mit QBC-Methode
	EOS
	src = "C 8269.00 15 Hämatogramm II (automatisiert): Hämatogramm I, plus Thrombozyten Limitation: nicht mit QBC-Methode\n"
	begin
		result = @parser.parse_line(src)
	rescue AmbigousParseException	=> e
		puts e.inspect
	end
	expected = {
	:code					=>	'8269.00',
	:group				=>	'8269',
	:position			=>	'00',
	:taxpoints		=>	15,
	:analysis_revision			=>	'C',
	:description	=>	'Hämatogramm II (automatisiert): Hämatogramm I, plus Thrombozyten',
	:limitation		=>	'nicht mit QBC-Methode',
	:permission		=>	nil,
	:list_title			=>	nil,
	:taxpoint_type	=>	nil,
	}
	assert_equal(expected, result)
end

#test_parse_page__1Object



103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'ext/analysisparse/test/test_appendix_parser.rb', line 103

def test_parse_page__1
	src = <<-EOS
5.3 Anhang C: Von Hebammen veranlasste Analysen (Art. 62 Abs. 1 Bst. c KVV)
Bemerkungen
Hebammen haben mit der Durchführung der Analysen dieser Liste die Laboratorien gemäss Artikel 54 Absatz 3 KVV zu betrauen.
Liste der Analysen
Rev. Pos.-Nr. A TP Bezeichnung (Liste Hebammen)
C 8001.00 18 ABO-Blutgruppen und Antigen D Bestimmung (inkl. Ausschluss schwaches D Antigen bei Rhesus D negativ) nach Empfehlungen BSD SRK "Erythrozytenserologische Unter- suchungen an Patientenproben"
8017.00 * 45 Alpha-1-Fetoprotein (AFP)
C 8200.00 35 Erythrozyten-Alloantikörper, Suchtest nach Empfehlungen BSD SRK "Erythrozyten- serologische Untersuchungen an Patienten- proben"
C 8269.00 15 Hämatogramm II (automatisiert): Hämatogramm I, plus Thrombozyten Limitation: nicht mit QBC-Methode
8580.00 4 Urin-Teilstatus (5-10 Parameter)
8606.00 30 Guthrie-Test
9108.01 35 Hepatitis-B-Virus-HBc-Antikörper (IG), ql
9108.40 35 Hepatitis-B-Virus-HBs-Antigennachweis EIA/RIA, ql
9116.40 * 12 HIV 1+2 -Antikörper (Screening) Schnelltest, ql
9132.01 35 Rubellavirus-Antik\uffffrper (IG oder IgG), ql
9564.81 * 20 Treponema VDRL, qn
9645.10 32 Toxoplasma gondii (Ig oder IgG)
9645.30 45 Toxoplasma gondii (IgM)

____*   _________________________________________
	 anonyme Position

	                                                                                                                     141
	EOS
	begin
		result = @parser.parse_page(src, 141)
	rescue AmbigousParseException => e
		puts e.inspect
	end
	expected_first = {
	:code						=>	'8001.00',
	:group					=>	'8001',
	:analysis_revision				=>	'C',
	:position				=>	'00',
	:taxpoints			=>	18,
	:description		=>	'ABO-Blutgruppen und Antigen D Bestimmung (inkl. Ausschluss schwaches D Antigen bei Rhesus D negativ) nach Empfehlungen BSD SRK "Erythrozytenserologische Untersuchungen an Patientenproben"',
	:list_title			=>	nil,
	:taxpoint_type	=>	nil,
	:permission			=>	nil,
	}
	expected_last = {
	:code						=>	'9645.30',
	:group					=>	'9645',
	:position				=>	'30',
	:taxpoints			=>	45,
	:description		=>	'Toxoplasma gondii (IgM)',
	:list_title			=>	nil,
	:taxpoint_type	=>	nil,
	:permission			=>	nil,
	}
	expected_size = 13
	assert_equal(expected_first, result.first)
	assert_equal(expected_last, result.last)
	assert_equal(expected_size, result.size)
end

#test_parse_page__2Object



160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# File 'ext/analysisparse/test/test_appendix_parser.rb', line 160

def test_parse_page__2
	src = <<-EOS
trifft nur das ärztliche Praxislaboratorium.
Teilliste 1
Für diese Analysen kann für das ärztliche Praxislaboratorium der 
Taxpunktwert in Tarifverträgen festgesetzt werden, wobei die Tax-
punktzahl der Analysenliste gilt. Fehlt eine solche vertragliche
Regelung, so gilt der Taxpunktwert der Analysenliste.
Rev. Pos.-Nr. A TP Bezeichnung (Liste Grundversorgung, Teilliste 1)
8259.00 9 Glukose, im Blut/Plasma/Serum
C 8273.00 7 Hämatokrit, manuelle Bestimmung, kumu-
lierbar mit 8210.00 Erythrozyten-Zählung, 8275.00 Hämoglobin, 8406.00 Leukozyten-
Zählung und 8560.00 Thrombozyten-
Zählung bis max. Taxpunktzahl 15
(Hämatogramm II)
Limitation: nicht mit QBC-Methode
C 8275.00 7 Hämoglobin, manuelle Bestimmung,
kumulierbar mit 8210.00 Erythrozyten-
Zählung, 8273.00 Hämatokrit, 8406.00
Leukozyten-Zählung und 8560.00
Thrombozyten-Zählung bis max. Tax-
punktzahl 15 (Hämatogramm II)
Limitation: nicht mit QBC-Methode
8387.00 9 Kreatinin, im Blut/Plasma/Serum
C 8406.00 9 Leukozyten-Zählung, manuelle Bestimmung,
kumulierbar mit 8210.00 Erythrozyten-
Zählung, 8273.00 Hämatokrit, 8275.00
Hämoglobin und 8560.00 Thrombozyten-
Zählung bis max. Taxpunktzahl 15
(Hämatogramm II)
Limitation: nicht mit QBC-Methode
8517.00 12 Sediment: mikroskopische Untersuchung
8519.00 6 Senkungsreaktion, exkl. Blutentnahme
8548.00 14 Thromboplastinzeit nach Quick
 127
EOS
	begin
		result = @parser.parse_page(src, 127)
	end
	expected_first = {
	:code						=> '8259.00',
	:group					=> '8259',
	:position				=> '00',
	:taxpoints			=> 9,
	:description		=> 'Glukose, im Blut/Plasma/Serum',
	:list_title			=>	nil,
	:permission			=>	nil,
	:taxpoint_type	=>	nil,
	}
	expected_last = {
	:code						=> '8548.00',
	:group					=> '8548',
	:position				=> '00',
	:taxpoints			=> 14,
	:description		=> 'Thromboplastinzeit nach Quick',
	:list_title			=>	nil,
	:permission			=>	nil,
	:taxpoint_type	=>	nil,
	}
	expected_size = 8
	assert_equal(expected_first, result.first)
	assert_equal(expected_last, result.last)
	assert_equal(expected_size, result.size)
end