Hi Michal,<br><br>On Tuesday, August 13, 2013, Michal Čihař  wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi<br>
<br>
Dne Mon, 12 Aug 2013 19:41:47 +0530<br>
Ayush Chaudhary <<a href="javascript:;" onclick="_e(event, 'cvml', 'ayushchd@gmail.com')">ayushchd@gmail.com</a>> napsal(a):<br>
<br>
> While studying the current Selenium test cases, I came across a design/organisation issue. This issue is related to redundant actions. For example, if we want to test the creation of a table, we need to create a database. We create a database already in the 'create database' test. Similarly, if go deeper into the flow, to test insertion of records in a table, we need to create a table which in turns needs us to create a database. If we have separate tests for these - (namely, 'Create a table', 'Insert a Record') we will be doing some actions redundantly, that is creating a database and creating a table and so on. Apart from the problem of redundancy, the tests will take a longer time to execute unnecessarily.<br>

><br>
> The alternatives that we might go for are:<br>
><br>
> 1. Create one single test that tests everything in the flow - creating a db -> creating a table -> inserting records, searching, editing (and other tasks) -> drop table -> drop db. The downside is that this will create a very long test in terms of length.<br>

><br>
> 2. Enforce the pre-requisite of having a testdb and some tables in that test db specifically for Selenium test cases wherever Selenium tests are supposed to be run. The downside is that this will create an extra and perhaps unnecessary dependency on the environment.<br>

<br>
I really did not look deeper into Selenium and PHPUnit integration, but<br>
isn't it possible to do some setup before running test, which will<br>
create tables used in the test?<br>
<br>
I'd really prefer to have separate tests for each task (so that it is<br>
can be easily seen what is broken), while the environment setup does not<br>
have to be done using Selenium...<br>
<br>
--<br>
        Michal Čihař | <a href="http://cihar.com" target="_blank">http://cihar.com</a> | <a href="http://phpmyadmin.net" target="_blank">http://phpmyadmin.net</a><br>
</blockquote><div><br></div><div>I don't see any explicit provision, however, we could perhaps connect manually to database and execute corresponding SQL queries to configure the database before<span></span> our tests. Does that sound ok? If yes, we use mysqli?</div>