You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Kirill Tkalenko (JIRA)" <ji...@apache.org> on 2019/07/04 09:39:00 UTC

[jira] [Updated] (IGNITE-11859) CommandHandlerParsingTest#testExperimentalCommandIsDisabled() don't works

     [ https://issues.apache.org/jira/browse/IGNITE-11859?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Kirill Tkalenko updated IGNITE-11859:
-------------------------------------
    Ignite Flags:   (was: Docs Required)

> 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
>
>
> {{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.3#76005)