-
-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Emit an error if row and header size mismatch #622
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,51 @@ | ||||||||||||||||||||||||||||||
/* | ||||||||||||||||||||||||||||||
* Copyright 2024 fs2-data Project | ||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||||||||||||||||||||||||||||||
* you may not use this file except in compliance with the License. | ||||||||||||||||||||||||||||||
* You may obtain a copy of the License at | ||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||
* http://www.apache.org/licenses/LICENSE-2.0 | ||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||
* Unless required by applicable law or agreed to in writing, software | ||||||||||||||||||||||||||||||
* distributed under the License is distributed on an "AS IS" BASIS, | ||||||||||||||||||||||||||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||||||||||||||||||||||||||||
* See the License for the specific language governing permissions and | ||||||||||||||||||||||||||||||
* limitations under the License. | ||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
package fs2.data.csv | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
import cats.data.NonEmptyList | ||||||||||||||||||||||||||||||
import weaver.* | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
object RowGeneratorTest extends SimpleIOSuite { | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
pureTest("Emit error on wrong row size (#621)") { | ||||||||||||||||||||||||||||||
val input = List( | ||||||||||||||||||||||||||||||
Row(NonEmptyList.of("a", "b", "c"), Some(1)), | ||||||||||||||||||||||||||||||
Row(NonEmptyList.of("d", "e"), Some(2)), | ||||||||||||||||||||||||||||||
Row(NonEmptyList.of("f", "g", "h", "i"), Some(3)), | ||||||||||||||||||||||||||||||
Row(NonEmptyList.of("j", "k", "l"), Some(4)) | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
val headers = NonEmptyList.of("first", "second", "third") | ||||||||||||||||||||||||||||||
Comment on lines
+25
to
+31
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
I find this test case slightly annoying to read, but except for this reordering (so it matches output order) and maybe adding some There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. One more thought on this snippet (not to be done in this PR though): Maybe a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Tried adding |
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
val result = fs2.Stream.emits(input).through(lowlevel.attemptWriteWithGivenHeaders(headers)).compile.toList | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
matches(result) { | ||||||||||||||||||||||||||||||
case List( | ||||||||||||||||||||||||||||||
Right(NonEmptyList("first", "second" :: "third" :: Nil)), | ||||||||||||||||||||||||||||||
Right(NonEmptyList("a", "b" :: "c" :: Nil)), | ||||||||||||||||||||||||||||||
Left(e1: HeaderSizeError), | ||||||||||||||||||||||||||||||
Left(e2: HeaderSizeError), | ||||||||||||||||||||||||||||||
Right(NonEmptyList("j", "k" :: "l" :: Nil)) | ||||||||||||||||||||||||||||||
) => | ||||||||||||||||||||||||||||||
expect.all(e1.expectedColumns == 3, | ||||||||||||||||||||||||||||||
e1.actualColumns == 2, | ||||||||||||||||||||||||||||||
e1.line == Some(2L), | ||||||||||||||||||||||||||||||
e2.expectedColumns == 3, | ||||||||||||||||||||||||||||||
e2.actualColumns == 4, | ||||||||||||||||||||||||||||||
e2.line == Some(3L)) | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wdyt about renaming to
encodeWithHeaders
? We already haveencodeWithoutHeaders
, so the naming feels a bit more consistent then theWithGiven
.No strong opinion on this though, just noticed it, decide as you see fit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wanted to keep consistent naming between the high and low level naming. Since the low level naming cannot be
writeWithHeaders
(this is the deprecated one) and high-level cannot beencodeGivenHeaders
(this is the deprecated one), I settled for merging both.