(E) ManagerProcessing
(O) LoadableExtensionLoader.load
(E) ServiceLoader
(E) ManagerStarted
(O) ConfigurationRegistrar.loadConfiguration
(E) ArquillianDescriptor
(O) ProtocolRegistryCreator.createRegistry
(E) ProtocolRegistry
(O) ContainerRegistryCreator.createRegistry
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Test | |
- SearchContext - o1 - S.......................................R | |
- ..... -- no context | |
- SearchContext - o2 - | |
- SearchContext - o1 | |
page1.setJSE(exec); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
format patches | |
============== | |
git format-patch 4.3.0.20130130-Final..4.3.1.20130305-Final -o ~/workspaces/richfaces5/patches/dev-examples/ | |
dos2unix for patch files | |
======================== | |
dos2unix * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FacesInspection { | |
@ApplyRequestValues | |
public void apply_request_values() { | |
// create me new magic component | |
applyValue("#{newMember.name}", "Joe Deer"); | |
} | |
/* | |
@Overriden |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Firefox @Drone WebDriver element; | |
@Page SomePage page; | |
---------- | |
@Location(page=SomePage.class) | |
public class FuncTest extends AbstractTest { | |
@Page @Browser1 SomePage page1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Legend: | |
??? - unknown mentor | |
Foo? - unconfirmed mentor | |
Drone Forge plugin - Juraj Huska?, Jan Papousek?, Koen Aers? | |
Warp SeamTest/jsfunit - Lukas Fryc, Marek Schmid, Jozef Hartinger? | |
Distributed testing - Dominik Pospisil? | |
JavaScript - Lukas Fryc | |
Cordova - ??? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.richfaces.component.autocomplete; | |
import static org.jboss.arquillian.graphene.Graphene.guardXhr; | |
import static org.junit.Assert.assertTrue; | |
import java.net.URL; | |
import javax.inject.Inject; | |
import org.jboss.arquillian.container.test.api.Deployment; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Jan 8, 2013 7:04:03 PM org.jboss.test.faces.staging.StagingServer init | |
INFO: Init staging server | |
Jan 8, 2013 7:04:03 PM javax.faces.FactoryFinder$FactoryManager getFactory | |
SEVERE: Application was not properly initialized at startup, could not find Factory: javax.faces.application.ApplicationFactory. Attempting to find backup. | |
Jan 8, 2013 7:04:03 PM org.jboss.test.faces.staging.StagingServer fireEvent | |
SEVERE: Exception in listener | |
java.lang.IllegalStateException: Could not find backup for factory javax.faces.application.ApplicationFactory. | |
at javax.faces.FactoryFinder$FactoryManager.getFactory(FactoryFinder.java:1011) | |
at javax.faces.FactoryFinder.getFactory(FactoryFinder.java:343) | |
at org.apache.myfaces.context.servlet.FacesContextImplBase.getApplication(FacesContextImplBase.java:159) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find -name "*.java" -exec sed -ri 's#ClientAction#Activity#g' {} \; | |
find -name "*.java" -exec sed -ri 's#ServerAssertion#Inspection#g' {} \; | |
find -name "*.java" -exec sed -ri 's#org\.jboss\.arquillian\.warp\.extension\.phaser#org.jboss.arquillian.warp.jsf#g' {} \; | |
find -name "*.java" -exec grep -q '@WarpTest' {} \; -exec sed -ri 's#execute\(#initiate(#' {} \; | |
find -name "*.java" -exec grep -q '@WarpTest' {} \; -exec sed -ri 's#public void action\(\)#public void perform()#' {} \; | |
find -name "*.java" -exec grep -q '@WarpTest' {} \; -exec sed -ri 's#filter\(#observe(#' {} \; | |
find -name "*.java" -exec grep -q '@WarpTest' {} \; -exec sed -ri 's#verify\(#inspect(#' {} \; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test | |
public void table_sort() throws InterruptedException { | |
// given | |
browser.get(contextPath.toExternalForm() + "sort.jsf"); | |
WebElement cell = browser.findElements(By.cssSelector(".rf-edt-c-column2 .rf-edt-c-cnt")).get(0); | |
Assert.assertEquals("9", cell.getText()); | |
guardXhr(sortLink).click(); | |
waitAjax().until(new Predicate<WebDriver> () { |