You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Robert Muir (JIRA)" <ji...@apache.org> on 2010/11/04 11:55:42 UTC

[jira] Created: (LUCENE-2738) improve test coverage for omitNorms and omitTFAP

improve test coverage for omitNorms and omitTFAP
------------------------------------------------

                 Key: LUCENE-2738
                 URL: https://issues.apache.org/jira/browse/LUCENE-2738
             Project: Lucene - Java
          Issue Type: Test
          Components: Build
            Reporter: Robert Muir
             Fix For: 3.1, 4.0


just expands on what lucenetestcase does already...

if you say Analyzed_NO_NORMS, we might set norms anyway.
in the same sense, if you say Index.NO, we might index it anyway, and might set omitTFAP etc.


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] Updated: (LUCENE-2738) improve test coverage for omitNorms and omitTFAP

Posted by "Robert Muir (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/LUCENE-2738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robert Muir updated LUCENE-2738:
--------------------------------

    Attachment: LUCENE-2738.patch

ok, here's a final patch... all tests pass (at least a few times).

I also improved some of the better tests, if they dont need norms to use _NO_NORMS,
and to explicitly randomly set OmitTFAP

> improve test coverage for omitNorms and omitTFAP
> ------------------------------------------------
>
>                 Key: LUCENE-2738
>                 URL: https://issues.apache.org/jira/browse/LUCENE-2738
>             Project: Lucene - Java
>          Issue Type: Test
>          Components: Build
>            Reporter: Robert Muir
>             Fix For: 3.1, 4.0
>
>         Attachments: LUCENE-2738.patch, LUCENE-2738.patch, LUCENE-2738.patch
>
>
> just expands on what lucenetestcase does already...
> if you say Analyzed_NO_NORMS, we might set norms anyway.
> in the same sense, if you say Index.NO, we might index it anyway, and might set omitTFAP etc.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] Updated: (LUCENE-2738) improve test coverage for omitNorms and omitTFAP

Posted by "Robert Muir (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/LUCENE-2738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robert Muir updated LUCENE-2738:
--------------------------------

    Fix Version/s:     (was: 3.1)

> improve test coverage for omitNorms and omitTFAP
> ------------------------------------------------
>
>                 Key: LUCENE-2738
>                 URL: https://issues.apache.org/jira/browse/LUCENE-2738
>             Project: Lucene - Java
>          Issue Type: Test
>          Components: Build
>            Reporter: Robert Muir
>             Fix For: 4.0
>
>         Attachments: LUCENE-2738.patch, LUCENE-2738.patch, LUCENE-2738.patch
>
>
> just expands on what lucenetestcase does already...
> if you say Analyzed_NO_NORMS, we might set norms anyway.
> in the same sense, if you say Index.NO, we might index it anyway, and might set omitTFAP etc.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] Commented: (LUCENE-2738) improve test coverage for omitNorms and omitTFAP

Posted by "Robert Muir (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/LUCENE-2738?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12982607#action_12982607 ] 

Robert Muir commented on LUCENE-2738:
-------------------------------------

Mike just reminded me about this one:
My concern for not committing is that we would actually reduce test coverage,
because most tests will create say field "foobar" in a loop like this:
{noformat}
for (....) {
   newField("foobar"....);
}
{noformat}

So because removing norms/omitTFAP is infectious, i think we will end out
only testing certain cases... unless we change the patch so that this random value
is "remembered" per field name during the length of the test... i think thats the
right solution (adding hashmap)

> improve test coverage for omitNorms and omitTFAP
> ------------------------------------------------
>
>                 Key: LUCENE-2738
>                 URL: https://issues.apache.org/jira/browse/LUCENE-2738
>             Project: Lucene - Java
>          Issue Type: Test
>          Components: Build
>            Reporter: Robert Muir
>             Fix For: 4.0
>
>         Attachments: LUCENE-2738.patch, LUCENE-2738.patch, LUCENE-2738.patch
>
>
> just expands on what lucenetestcase does already...
> if you say Analyzed_NO_NORMS, we might set norms anyway.
> in the same sense, if you say Index.NO, we might index it anyway, and might set omitTFAP etc.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] Updated: (LUCENE-2738) improve test coverage for omitNorms and omitTFAP

Posted by "Robert Muir (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/LUCENE-2738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robert Muir updated LUCENE-2738:
--------------------------------

    Attachment: LUCENE-2738.patch

nevermind, that was my problem.... heres a fixed patch.

my coffee IV is not fully running yet.


> improve test coverage for omitNorms and omitTFAP
> ------------------------------------------------
>
>                 Key: LUCENE-2738
>                 URL: https://issues.apache.org/jira/browse/LUCENE-2738
>             Project: Lucene - Java
>          Issue Type: Test
>          Components: Build
>            Reporter: Robert Muir
>             Fix For: 3.1, 4.0
>
>         Attachments: LUCENE-2738.patch, LUCENE-2738.patch
>
>
> just expands on what lucenetestcase does already...
> if you say Analyzed_NO_NORMS, we might set norms anyway.
> in the same sense, if you say Index.NO, we might index it anyway, and might set omitTFAP etc.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] Updated: (LUCENE-2738) improve test coverage for omitNorms and omitTFAP

Posted by "Robert Muir (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/LUCENE-2738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robert Muir updated LUCENE-2738:
--------------------------------

    Attachment: LUCENE-2738.patch

here's the start to a patch.

worried about one fail, either i made a mistake here i don't see, or the test shouldn't be failing:
{noformat}
ant test-core -Dtestcase=TestIndexWriter -Dtestmethod=testTermVectorCorruption2 -Dtests.seed=8395558104679823604:-6279799097172774748
{noformat}

> improve test coverage for omitNorms and omitTFAP
> ------------------------------------------------
>
>                 Key: LUCENE-2738
>                 URL: https://issues.apache.org/jira/browse/LUCENE-2738
>             Project: Lucene - Java
>          Issue Type: Test
>          Components: Build
>            Reporter: Robert Muir
>             Fix For: 3.1, 4.0
>
>         Attachments: LUCENE-2738.patch
>
>
> just expands on what lucenetestcase does already...
> if you say Analyzed_NO_NORMS, we might set norms anyway.
> in the same sense, if you say Index.NO, we might index it anyway, and might set omitTFAP etc.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org