Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am doing some tests with the tapestry-testify librairy. But I have a question about its documentation : http://tapestry.formos.com/nightly/tapestry-testify/testing-components.html

I would like to pass different value to a parameter of my component. Could someone explain to me how can i do that.

I have the same project structure as in the documentation.

myComponent.java

package Perso.monAppli.components;

import org.apache.tapestry5.annotations.Parameter;
import org.apache.tapestry5.annotations.Property;


public class myComponent {

    @Parameter
    @Property
    private String myParam;


}

myComponent.tml

<fieldset xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd">
    <p>test ${myParam}</p>
</fieldset>

myComponentDemo.java

package Perso.monAppli.demo.pages;

import org.apache.tapestry5.annotations.Property;
import org.apache.tapestry5.annotations.Service;
import org.apache.tapestry5.ioc.annotations.Inject;



public class MyComponentDemo {

    @Inject
    @Service("myParam")
    @Property
    private String myParam;

}   

myComponentDemo.tml

<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd">
    <head>
        <title>DayMonthYearDateInputTestPage</title>
    </head>
    <body>
        <h1 id="h2">DayMonthYearDateInputTestPage</h1>


        <div t:type="myC/MyComponent" t:id="myComponent" t:myParam="myParam"/>
    </body>
</html>

myComponentTest.java

package Perso.monAppli.components;

import org.apache.tapestry5.dom.Document;
import org.testng.Assert;
import org.testng.annotations.Test;

import Perso.monAppli.demo.DemoModule;

import com.formos.tapestry.testify.core.ForComponents;
import com.formos.tapestry.testify.core.TapestryTester;
import com.formos.tapestry.testify.junit3.TapestryTest;


public class MyComponentTest extends TapestryTest{

    @ForComponents(value="myParam")
    private String myParam;


    private static final TapestryTester SHARED_TESTER = new TapestryTester("app", DemoModule.class);

    public MyComponentTest() {
        super(SHARED_TESTER);
    }

     @Test
     public void testElementIsOnPage()  {

        Document page = tester.renderPage("demo/MyComponentDemo");
        System.out.println("### HTML " + page.getRootElement().getChildMarkup());
        Assert.assertTrue(page.getRootElement().getChildMarkup().contains("testMyParam"));
     }



}

Do I have to create a service for passing value to my component ?

Thank you for your help.

share|improve this question
When Id test that solution, i have got this error message : [ERROR] ioc.Registry Service id 'myParam' is not defined by any module. – Gillespie59 Mar 15 '11 at 11:58
Did you created service for myParam in AppModule.java class? Or try to remove @Inject annotation – Milos Oct 9 '11 at 20:13

2 Answers

Now I can pass values to my parametre, but I still have errors in my Console :

[ERROR] ioc.Registry Service id 'myParam' is not defined by any module.
[ERROR] ioc.Registry Operations trace:
[ERROR] ioc.Registry [ 1] Constructing instance of page class Perso.monAppli.demo.pages.MyComponentDemo
[ERROR] ioc.Registry [ 2] Creating ComponentAssembler for Perso.monAppli.demo.pages.MyComponentDemo
[ERROR] ioc.Registry [ 3] Transforming component class Perso.monAppli.demo.pages.MyComponentDemo
[ERROR] ioc.Registry [ 4] Injecting field myParam
[ERROR] ioc.Registry [ 5] Resolving object of type java.lang.String using MasterObjectProvider
share|improve this answer

I'm not sure of this, but did you try to change name of "myParam"?

For instance:

myComponentDemo.java

  @Inject
  @Service("myParamService")
  @Property
  private String myParamValue;

myComponentDemo.tml

  <div t:type="myC/MyComponent" t:id="myComponent" t:myParam="myParamValue"/>

myComponentTest.java

   @ForComponents("myParamService")
     private String myParam;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.