Archive for August, 2010

Install VMWare tools

It's a small but simple task to install VMWare tools on your virtual machine. I used the VMware vSphere Client to connect iso of the official VMWare client software as a cdrom to the cdrom drive of the running vm. Copy the tar.gz file to a temp directory Extract the archive file Run the installation file The default parameters where sufficient for me so i could quickly continue I had to compile the tool again because there where no precompiled valid for my system. I...

Configure Hudson Subversion Credentials

When hudson is using a secured subversion repository you need to supply the credentials for the used repository. You can enter your credentials using the following url: You will get a screen where you can register credentials connected to a...

Getting started with Hudson

To get started with hudson you need to download the latest hudson version Winstone is included in the war file so with a single command you can start hudson...

Include integration tests in maven build with TestNG

To execute integration tests you can use testNG an other test framwork bases on junit framework. Test Suite Just create a simple testNG suite defined in a XML format: Annotations It calls the following Selenium test case where i have created a simple login script that logins with the supplied username and password (annotated with testng annotations ). It validates the tests if a valid or invalid repose is available in the HTML page. Used annotations: @BeforeClass you specify...