[jbosstools-issues] [JBoss JIRA] (JBIDE-14780) Add ShrinkWrap Archive name/type validation

Max Rydahl Andersen (JIRA) jira-events at lists.jboss.org
Tue Jul 2 06:20:22 EDT 2013


     [ https://issues.jboss.org/browse/JBIDE-14780?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Max Rydahl Andersen updated JBIDE-14780:
----------------------------------------

    Fix Version/s: 4.1.0.CR1
                       (was: 4.1.0.Final)


Since Final is just supposed to be a rename/respin of CR1 it does not make sense to assign issues to Final unless they are related to things that can done outside a rebuild (i.e. discovery site updates)
                
> Add ShrinkWrap Archive name/type validation
> -------------------------------------------
>
>                 Key: JBIDE-14780
>                 URL: https://issues.jboss.org/browse/JBIDE-14780
>             Project: Tools (JBoss Tools)
>          Issue Type: Sub-task
>          Components: testing-tools
>            Reporter: Aslak Knutsen
>            Assignee: Snjezana Peco
>             Fix For: 4.1.0.CR1
>
>
> *Given*
> {code}
> ShrinkWrap.create(WebArchive.class, "test.jar")
> ShrinkWrap.create(WebArchive.class, "test.ear")
> ShrinkWrap.create(JavaArchive.class, "test.ear")
> ShrinkWrap.create(WebArchive.class, "test")
> {code}
> *When*
> User is creating a Archive
> *Then*
> The known Archive types should match given archive name extensions.
> *Expected*
> Warning; Creating an archive of type WebArchive but given name does not match to predefined name extension; .war
> *Actual*
> Nothing.. waits for Arquillian to fail. 
> This is a very common and annoying user error. The Container/Server will 99% of the time rely on the deployment file extension to determine what type of archive this is. While our 'WebArchive' Archive types are only convenience views on how to add data to correct locations within the target archive and can be any type; we choose to validate this runtime in Arquillian core to warn that 'hey, this is probably not what you intended to do' to hopefully save users from a few hours pointless debugging. 
> See https://github.com/arquillian/arquillian-core/blob/master/container/spi/src/main/java/org/jboss/arquillian/container/spi/client/deployment/Validate.java#L45 for our extension type mapping.
> Our validation logic is; if extension does not match, but Archive is of Type then warn. 
> That allows users to use Custom views without warning.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the jbosstools-issues mailing list