-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
JDK-8290836 Improve test coverage for XPath functions: String Functions #9752
Conversation
👋 Welcome back bwhuang-us! A progress list of the required criteria for merging this PR into |
/issue add JDK-8290837, JDK-8290838 |
@bwhuang-us Adding additional issue to issue list: |
@bwhuang-us The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
Webrevs
|
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.
Overall, nice set of tests!
I see you've covering three issues, sth. I don't have experience with, so let's see what happens. It might be that the tests have different bug id associated with them, not much of an issue as this is a test enhancement.
See comments below.
|
||
/* | ||
* DataProvider for testing TransformerException being thrown on | ||
* invalid number function usage. |
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 think you meant XPathExpressionException instead of TransformerException.
Typo: s/number/boolean
This comment applies to other occurrences as well.
*/ | ||
@DataProvider(name = "exceptionExpTestCases") | ||
public Object[][] getExceptionExp() { | ||
return new Object[][]{ |
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.
Applies to DataProviders for exception testing: would be good to add some notes about the data, e.g. why they are invalid.
* @throws Exception if test fails | ||
*/ | ||
@Test(dataProvider = "exceptionExpTestCases", expectedExceptions = | ||
XPathExpressionException.class) |
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.
expectedExceptions is fine in this case. But there's a preference in using assertThrows in general. I'll leave it to you to decide.
*/ | ||
@Test(dataProvider = "numberExpTestCases") | ||
void testNumberFn(String exp, double expected) throws Exception { | ||
testExp(doc, exp, expected, Double.class); |
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.
Besides Double, Integer and Long are also supported. It's ok though as the focus here is on the XPath expressions. If you want to add a few cases, that would be good too.
@@ -77,16 +79,20 @@ class XPathTestBase { | |||
+ " <City>The City</City>" | |||
+ " <State>The State</State>" | |||
+ " </Address>" | |||
+ " <Age>0</Age>" |
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 don't see any issue in the test cases themselves. But the ages being 0, 1, -1 makes it slightly less readable because they can be confused with the number of nodes in the nodeset, even number(true()) as that also returns 1. It could be sth. that leads to mistakes. I would set the ages > 1, or actually greater than the number of nodes possibly returned.
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.
Thanks for the update.
@bwhuang-us This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 90 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. As you do not have Committer status in this project an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@JoeWang-Java) but any other Committer may sponsor as well. ➡️ To flag this PR as ready for integration with the above commit message, type |
/integrate |
@bwhuang-us |
/sponsor |
Going to push as commit d889264.
Your commit was automatically rebased without conflicts. |
@JoeWang-Java @bwhuang-us Pushed as commit d889264. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Improve test coverage for XPath functions: JDK-8290836, JDK-8290837, JDK-8290838.
Progress
Issues
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk pull/9752/head:pull/9752
$ git checkout pull/9752
Update a local copy of the PR:
$ git checkout pull/9752
$ git pull https://git.openjdk.org/jdk pull/9752/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 9752
View PR using the GUI difftool:
$ git pr show -t 9752
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/9752.diff