aboutsummaryrefslogtreecommitdiffstats
path: root/htdocs/application/controllers/Unittest.php
blob: 937ab92c855a354f767b4d5fc2515333428dfbc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php if (!defined('BASEPATH')) {
    exit('No direct script access allowed');
}

class Unittest extends CI_Controller
{

    public function __construct()
    {
        parent::__construct();

        //protection

        if ($_SERVER['HTTP_HOST'] != 'stikked') {
            exit;
        }
    }

    public function index()
    {
        $this->load->library('unit_test');
        $this->load->model('pastes');

        //self test
        $test = 1 + 1;
        $expected_result = 2;
        $test_name = 'Self test: Adds one plus one';
        $this->unit->run($test, $expected_result, $test_name);

        //manipulation: create paste
        $_POST['code'] = '<?php echo "hello world!";';
        $_POST['lang'] = 'php';
        $_POST['title'] = 'hello world';
        $_POST['name'] = 'stikkeduser';
        $pid = $this->pastes->createPaste();

        //paste created, has pid
        $test = $pid;
        $expected_result = 'is_string';
        $test_name = 'Create paste, has pid';
        $this->unit->run($test, $expected_result, $test_name);
        $pid = str_replace('view/', '', $pid);

        //manipulation: delete paste
        $this->pastes->delete_paste($pid);

        //report
        echo $this->unit->report();
    }
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy