_Seyed
Hey folks,
I’ve written a regular expression for validating input strings. For testing purposes, I want to setup a scenario where a set of test vectors can be automatically injected as input into a new test and match against the regex. I’m currently testing each vector manually. I’ve written the code below. I was also thinking of using a file as opposed to hard coding the strings. Is there a nice way to this? Any feedback is much appreciated.
setup_all do
sample_strings = %{
sample_str1: "test_string",
sample_str2: "cz-dev",
sample_str3: "new___cczdj",
sample_str4: "czar,,,nic",
}
end
defp input_length_valid(inp) do
case String.length(inp) > 100 do
true -> false
false -> true
end
end
test "Regular expression for string - test #1", sample_strings
do
assert sample_strings.sample_str3
|> String.replace("_", "-")
|> String.match?( ~r/^(my-regex)*$/)
assert sample_strings.sample_str3 |> input_length_valid() == true
end
test "Regular expression for string - test #2", sample_strings
do
assert sample_strings.sample_str2
|> String.replace("_", "-")
|> String.match?( ~r/^(my-regex)*$/)
assert sample_strings.sample_str2 |> input_length_valid() == true
end
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
al2o3cr
If your sample strings are constants, you could put them in a module attribute:
General comment on
input_length_valid: there are only four functions that take a single boolean value and return a single boolean value (constant true, constant false, identity, and invert) - whenever you find yourself writing acasewith booleans on both sides of the->s, figure out which one of the four you have and remove thecase.In this case you have “invert” - so
input_length_validsimplifies tonot(String.length(inp) > 100)or even justString.length(inp) <= 100As to the test itself, unless there are a LOT of cases in
@sample_stringsyou may find a single test easier to write. For instance, this is a very simple approach:One downside of this approach is that it will fail the test on the first string that doesn’t match; if you want to see all the failures in a single run you could accumulate them explicitly:
The main thing I like to keep in mind when structuring asserts like these: what do I want to learn when one fails?
_Seyed
Hey Matt,
Thanks a lot for the feedback.
My goal is to provide a test bed for trying out regular expressions. I’m currently displaying the strings that fail either test with
IO.inspect.On another note, I was thinking of adding the length_check to the pipe in
regex_matches?()/1; since it returns a binary I don’t think it’s a good idea since I have to short circuit the pipeline. Would you recommend awithstatement?Thank you very much for your guidance.
al2o3cr
To be frank, I don’t understand the intent of either
input_length_validor theString.replacehere since the inputs are literals in the file - so it’s hard to make specific recommendations.You could use an
=clause for theString.replaceif you wanted to usewith._Seyed
In my particular use case, the input strings should have less than 100 characters. I think you are correct that the
replacestatement is a preprocessing step and should not be part of the test. Thank you for putting that into perspective.dimitarvp
As an alternative to @al2o3cr’s excellent answer, you can just code-generate test cases for each value so you have one failing test for each value that doesn’t match well:
Or you can draw out the heavy guns and use property-based testing (with some limitations of the input values so they are not infinite).
_Seyed
Thanks a lot @dimitarvp.