Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Facelet Functional Test"

(Attribute Name Prefix)
(Attribute Name Assist)
Line 44: Line 44:
 
====Basic insert====
 
====Basic insert====
  
# In an ''h:outputText'' tag, activate content assist.
+
# In a no-attribute ''h:outputText'' tag, activate content assist.
 
# Verify that the attribute options are listed.
 
# Verify that the attribute options are listed.
 +
# Select ''value'' and verify it inserts correctly.
 
# In an h:message tag, activate content assist for attributes.  
 
# In an h:message tag, activate content assist for attributes.  
# Verify that the attribute ''for'' is marked to indicate it is required.
+
# Verify that the attribute ''for'' is marked to indicate it is required.\
 +
# Select ''for'' and verify it inserts correctly.
  
 
====Attribute Name Prefix====
 
====Attribute Name Prefix====
Line 54: Line 56:
 
# Activate content assist after the ''v''.
 
# Activate content assist after the ''v''.
 
# Verify that only assists for ''validator'', ''validatorMessage'', ''value'', ''valueChangeListener''.
 
# Verify that only assists for ''validator'', ''validatorMessage'', ''value'', ''valueChangeListener''.
# Select the
+
# Select the validator and verify it inserts correctly.
  
 
===Static Attribute Value Assist===
 
===Static Attribute Value Assist===

Revision as of 20:29, 21 May 2008

Feature Test

Content Assist

For all these tests, start with a Dynamic Web Project with the JSF 1.2/Facelet facets. Ensure that JSF runtime, JSTL 1.2 and the facelet jars in the classpath. Create an XHTML 1.0 Transitional file in the WebContent root directory.

Namespace Assist

Basic insertion

  1. Place the cursor inside the html tag.
  2. Add the text xmlns:f=. Verify that content assist activates after the equals sign.
  3. With the cursor after the = sign, and Ctrl-Space.
  4. Verify again the content assist is activated with the following options:
  5. Select on of the options and verify that it is correctly inserted.

FaceletNamespaceContentAssist.png

No duplicate insertion

  1. With one of the namespace options inserted into the HTML from the test above.
  2. Create a new attribute for xmlns:h=
  3. Verify that the options list for content assist (which should again appear after entering hitting the = sign) includes all valid namespace options 'except' the one already inserted.
  4. Select an option and verify that it inserts correctly.

Tag Assist

Basic insertion

  1. Create an XHTML document and add the core and html namespaces to the page.
  2. Save the page.
  3. Create an opening less-than (<) and hit Ctrl-Space.
  4. Verify that all the core and html tags are present.
  5. Select h:form and verify it is correctly inserted.

Prefix selection

  1. Add the text <f: to a document with core declared with the f prefix.
  2. Hit Ctrl-Space after the : and verify that only the core tags are listed in the content assist.
  3. Add the text <h:in to a document with html declared with the h prefix.
  4. Hit Ctrl-Space after the text and verify that only inputHidden, inputSecret, inputText, inputTextarea are present.

Attribute Name Assist

Basic insert

  1. In a no-attribute h:outputText tag, activate content assist.
  2. Verify that the attribute options are listed.
  3. Select value and verify it inserts correctly.
  4. In an h:message tag, activate content assist for attributes.
  5. Verify that the attribute for is marked to indicate it is required.\
  6. Select for and verify it inserts correctly.

Attribute Name Prefix

  1. In a no-attribute h:outputText tag, add the a v at the beginning of an attribute.
  2. Activate content assist after the v.
  3. Verify that only assists for validator, validatorMessage, value, valueChangeListener.
  4. Select the validator and verify it inserts correctly.

Static Attribute Value Assist

EL Content Assist

Validation

Hover Help

Hyperlink

Back to the top