Automated tests Flashcards

1
Q

Which external testing framework does symfony integrate?

A

PHPUnit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which different type of tests exist?

A

Unit tests
Integration tests
Application / functional tests

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What needs to be installed before starting with automated tests?

A
symfony/test-pack
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

In which directory should testclasses be located?

A
/tests
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which file is used to configure PHPUnit?

A
phpunit.xml.dist
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How should Testfiles be stored according to best practice?

A

In the same structure like the actual classes, but under

/tests
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What do unit tests do?

A

Ensure that individual units of source code behave as intended

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How can tests be run?

A
php bin/phpunit
php bin/phpunit tests/Form
php bin/phpunit tests/Form/UserTypeTest.php
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What do integration tests do?

A

Test larger parts of the application compared to a unit test (e.g. a combination of services)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Which predefined symfony class might be helpful for integration?

A
KernelTestCase
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Why is the KernelTestCase helpful for integration tests?

A

It reboots the kernel and provides the DI-container for every testcase

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How can you integrate a different database connection for testcases instead using the one for dev environment?

A

By overriding the DATABASE_URL via the .env.test

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the order of .env overriding?

A

.env: containing env vars with application defaults;

.env.test: overriding/setting specific test values or vars;

.env.test.local: overriding settings specific for this machine.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How can a concrete service in the container be exchanged by a mocked one?

A

Use KernelTestCase and:

$newsRepository = $this->createMock(NewsRepositoryInterface::class);

$container->set(NewsRepositoryInterface::class, $newsRepository);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How can a test database be created?

A
php bin/console --env=test doctrine:database:create
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How is dummy database-data being created?

A

with doctrine fixtures:

doctrine/doctrine-fixtures-bundle
17
Q

What do application tests do?

A

Check the integration of all the different layers of the application

18
Q

Where are application-tests typcally stored?

A
tests/Controller/
19
Q

Which base-class does symfony provide for application tests?

A

WebTestCase

20
Q

What additional functinalities does the WebTestCase provide?

A

BrowserKitAssertions,
DomCrawlerAssertions,
ClientAssertions

21
Q

How can you make the client for WebTestCases follow / unfollow redirects that happen during a process?

A
$client->followRedirects();

$client->followRedirects(false);
22
Q

How can you test parts of the application that require login for being used inside an application test?

A

Before using the client to send the request, execute:

$client->loginUser($testUser);
`

The test user can come from e.g. Doctrine-Fixture only for test environment

23
Q

Which method is being used to send an AJAX-request within an application test?

A
$client = static::createClient();
$client->xmlHttpRequest('POST', '/submit', ['name' => 'Fabien']);
24
Q

How do you set custom headers when sending a request within an application test?

A

For all requests

$client = static::createClient([], [
    'HTTP_HOST'       => 'en.example.com',
    'HTTP_USER_AGENT' => 'MySuperBrowser/1.0',
]);

or for specific requests

$client->request('GET', '/', [], [], [
    'HTTP_HOST'       => 'en.example.com',
    'HTTP_USER_AGENT' => 'MySuperBrowser/1.0',
]);
25
Q

How can you access the history of the HTTPClient?

A

```$client->getHistory()``

26
Q

How do you get the HTTPKernel response from the client?

A
$client->getResponse()
27
Q

How do you get the Browserkit-Response from the client?

A
$response = $client->getInternalResponse();
28
Q

How can you select a form in an application test, fill it with data and submit it automatically?

A
$client = static::createClient();
$crawler = $client->request('GET', '/post/hello-world');

// select the button
$buttonCrawlerNode = $crawler->selectButton('submit');

// retrieve the Form object for the form belonging to this button
$form = $buttonCrawlerNode->form();

// set values on a form object
$form['my_form[name]'] = 'Fabien';
$form['my_form[subject]'] = 'Symfony rocks!';

// submit the Form object
$client->submit($form);
29
Q

How can profiling be activated in functional tests?

A
$client->enableProfiler()
30
Q

What can be obtained by profiling functional tests?

A
  • amount of database calls
  • time spend inside framework code
  • time spend accessing the database

Like this, tests can be written that check if the application meets the performance requirements:

       $client->enableProfiler();

        $crawler = $client->request('GET', '/lucky/number');

        // ... write some assertions about the Response

        // check that the profiler is enabled
        if ($profile = $client->getProfile()) {
            // check the number of requests
            $this->assertLessThan(
                10,
                $profile->getCollector('db')->getQueryCount()
            );

            // check the time spent in the framework
            $this->assertLessThan(
                500,
                $profile->getCollector('time')->getDuration()
            );
        }