Chai assertion error if in text are hyphen - javascript

There are uncaught assertion error in Chai with Cucumber-js. If in the DocString there are a hyphen - assertion does not work.
So if I have scenario DocString, like
Then I see message:
'''
somewhat1
somewhat2
somewhat3 - somewhat4
'''
I cannot use assert.equal or assert.include assertions because recieve an assertion error, although both arguments is absolutely identical.
If I use DocString without hyphen, like
Then I see message:
'''
somewhat1
somewhat2
somewhat3
'''
there are no any troubles.
Why I recieve an error when use hyphen?
There are any idea how can I use hyphen right in DocString?
Thanks.

Okay there was be trouble because on site use multiple templates with different types of hyphen.it was necessary to use hyphen-minus instead of a dash.

Related

How to test invalid input for encodeURIComponent()

How to write invalid input for encodeURIComponent()?
I browsed the documentation for encodeURIComponent. It mentions
URIError: Thrown if uriComponent contains a lone surrogate.
How to test this while writing a unit test?
You can try an invalid unicode symbol. Something like this: encodeURIComponent('\uDFFF');

Regex returns nothing to repeat [duplicate]

I'm new to Regex and I'm trying to work it into one of my new projects to see if I can learn it and add it to my repitoire of skills. However, I'm hitting a roadblock here.
I'm trying to see if the user's input has illegal characters in it by using the .search function as so:
if (name.search("[\[\]\?\*\+\|\{\}\\\(\)\#\.\n\r]") != -1) {
...
}
However, when I try to execute the function this line is contained it, it throws the following error for that specific line:
Uncaught SyntaxError: Invalid regular expression: /[[]?*+|{}\()#.
]/: Nothing to repeat
I can't for the life of me see what's wrong with my code. Can anyone point me in the right direction?
You need to double the backslashes used to escape the regular expression special characters. However, as #Bohemian points out, most of those backslashes aren't needed. Unfortunately, his answer suffers from the same problem as yours. What you actually want is:
The backslash is being interpreted by the code that reads the string, rather than passed to the regular expression parser. You want:
"[\\[\\]?*+|{}\\\\()#.\n\r]"
Note the quadrupled backslash. That is definitely needed. The string passed to the regular expression compiler is then identical to #Bohemian's string, and works correctly.
Building off of #Bohemian, I think the easiest approach would be to just use a regex literal, e.g.:
if (name.search(/[\[\]?*+|{}\\()#.\n\r]/) != -1) {
// ... stuff ...
}
Regex literals are nice because you don't have to escape the escape character, and some IDE's will highlight invalid regex (very helpful for me as I constantly screw them up).
For Google travelers: this stupidly unhelpful error message is also presented when you make a typo and double up the + regex operator:
Okay:
\w+
Not okay:
\w++
Firstly, in a character class [...] most characters don't need escaping - they are just literals.
So, your regex should be:
"[\[\]?*+|{}\\()#.\n\r]"
This compiles for me.
Well, in my case I had to test a Phone Number with the help of regex, and I was getting the same error,
Invalid regular expression: /+923[0-9]{2}-(?!1234567)(?!1111111)(?!7654321)[0-9]{7}/: Nothing to repeat'
So, what was the error in my case was that + operator after the / in the start of the regex. So enclosing the + operator with square brackets [+], and again sending the request, worked like a charm.
Following will work:
/[+]923[0-9]{2}-(?!1234567)(?!1111111)(?!7654321)[0-9]{7}/
This answer may be helpful for those, who got the same type of error, but their chances of getting the error from this point of view, as mine! Cheers :)
for example I faced this in express node.js when trying to create route for paths not starting with /internal
app.get(`\/(?!internal).*`, (req, res)=>{
and after long trying it just worked when passing it as a RegExp Object using new RegExp()
app.get(new RegExp("\/(?!internal).*"), (req, res)=>{
this may help if you are getting this common issue in routing
This can also happen if you begin a regex with ?.
? may function as a quantifier -- so ? may expect something else to come before it, thus the "nothing to repeat" error. Nothing preceded it in the regex string so it didn't get to quantify anything; there was nothing to repeat / nothing to quantify.
? also has another role -- if the ? is preceded by ( it may indicate the beginning of a lookaround assertion or some other special construct. See example below.
If one forgets to write the () parentheses around the following lookbehind assertion ?<=x, this will cause the OP's error:
Incorrect: const xThenFive = /?<=x5/;
Correct:
const xThenFive = /(?<=x)5/;
This /(?<=x)5/ is a positive lookbehind: we're looking for a 5 that is preceded by an x e.g. it would match the 5 in x563 but not the 5 in x652.

Getting Lexer Error with AngularJS and ng-pattern

I'm getting the following error at runtime:
Error: [$parse:lexerr] Lexer Error: Unexpected next character at columns 11-11 [\] in expression [[0-9]{1,4}(\.[0-9]{1,3})?].
My HTML looks like this
<input type="text"
class="form-control"
name="amount"
ng-pattern="{{ctrl.pattern}}"
ng-model="ctrl.amount">
The assignment in my AngularJS controller is as follows:
ctrl.pattern = '[0-9]{1,4}(\\.[0-9]{1,3})?';
From what I understand AngularJS appends the ^ and $ at the beginning and end of regular expressions and that works great. The problem is that the regex literal in the middle of the expression is not being accepted. I want to dot to be accepted as a literal and not as any character so I need a way to escape it yet the lexer does not to like it. Is there a way around this?
This issue is already reported here but they are not going to fix it as according to them its a uncommon usecase.
Do it this way instead:
ctrl.pattern = /^[0-9]{1,4}([.][0-9]{1,3})?$/;
This way the regex will be evaluated as a regex object instead of a string parameter to RegExp in which case we will need to add ^,$

i have used replace("[^-A-Za-z0-9()%.] but it throws error missing comma for ' come can i resolve this error

I have used replace ("[^-A-Za-z0-9()%.] but it throws error missing comma for ' (apostrophe) how can i resolve this error.
every other special character is being replaced or does not throw an error
You can use the regex validator
Regex validator
also in the replace method you have to provide source string and the string you want it to replace with

Invalid quatifier. jQuery.validation.js

After a quick research here and here, the solutions didn't work for my project.
Here is the regex:
"^([A-Za-z0-9\._%-]+#[A-Za-z0-9\.-]+\.[A-Za-z]{2,4}+[;]?)(?:[;][A-Za-z0-9\._%-]+#[A-Za-z0-9\.-]+\.[A-Za-z]{2,4}+[;]?)*$|^$"
And here is an error that firebug fires at me whenever I reach email validation step (see regex above):
invalid quantifier
hasformat()jquery...tion.js (line 211)
pattern = "\^([A-Za-z0-9\._%-]+#[A...-Za-z]{2,4}+[;]?)*$|^$\"
I think it's the + after the two sets of {2,4}
removed like below gets it running but may not be what you need for the pattern
^([A-Za-z0-9\._%-]+#[A-Za-z0-9\.-]+\.[A-Za-z]{2,4}[;]?)(?:[;][A-Za-z0-9\._%-]+#[A-Za-z0-9\.-]+\.[A-Za-z]{2,4}[;]?)*$|^$

Categories

Resources