[
https://issues.apache.org/jira/browse/IGNITE-11859?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16882709#comment-16882709
]
Sergey Chugunov commented on IGNITE-11859:
------------------------------------------
[[email protected]],
Change looks good to me, thank you for contribution!
[~DmitriyGovorukhin], could you please merge it into master?
> CommandHandlerParsingTest#testExperimentalCommandIsDisabled() don't works
> -------------------------------------------------------------------------
>
> Key: IGNITE-11859
> URL: https://issues.apache.org/jira/browse/IGNITE-11859
> Project: Ignite
> Issue Type: Bug
> Reporter: Sergey Antonov
> Assignee: Kirill Tkalenko
> Priority: Major
> Fix For: 2.8
>
> Time Spent: 10m
> Remaining Estimate: 0h
>
> {{parseArgs(Arrays.asList(WAL.text(), WAL_PRINT));}} and
> {{parseArgs(Arrays.asList(WAL.text(), WAL_DELETE));}} should throw
> IllegalArgumentException, but it isn't.
> h2. How to reproduce:
> Replace test to:
> {code:java}
> /**
> * Test that experimental command (i.e. WAL command) is disabled by
> default.
> */
> @Test
> public void testExperimentalCommandIsDisabled() {
> System.clearProperty(IGNITE_ENABLE_EXPERIMENTAL_COMMAND);
> GridTestUtils.assertThrows(null,
> ()->parseArgs(Arrays.asList(WAL.text(), WAL_PRINT)),
> IllegalArgumentException.class, null);
> GridTestUtils.assertThrows(null,
> ()->parseArgs(Arrays.asList(WAL.text(), WAL_DELETE)),
> IllegalArgumentException.class, null);
> }
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.14#76016)