Home

Awesome

CIModelTester

A CodeIgniter interactive model tester web interface. Directly call your model functionality for testing and debugging.

Usage

Load in your browser: http://<mydomain>/index.php/CIModelTester. You'll see the main CIModelTester page.

<img src='imgs/mainpage.png' width='300px' />

Then, click on a model to see the model page.

<img src='imgs/modelpage.png' width='300px' />

From here, type parameters into the fields to pass data to a method. In the image below, the model RecData_model has method getUserInterests with one parameter uid. When I enter 2, it returns the one interest of that user and displays the return value of the method as JSON (i.e. CIModelTester uses ajax to call your method and passes the data as JSON). Note: methods that take arrays can be called with brackets. i.e. [1,2,3] would be equivalent to php's array(1,2,3).

<img src='imgs/amethod.png' width='300px' />

NOTE: If you use proper code documentation, it even prints the comments! You can toggle the comments on, as they are off by default. NOTE2: The toggle button collapses the returned data after a query. Sometimes the return is long so I added this in. NOTE3: The unit test button goes directly to the unit test case for that method. If it does not exist, it will tell you.

Installation

Quick Install

For Tailored Use

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
require_once(APPPATH.'libraries/modeltester.php');
class MyModelTester extends CIModelTester {
    public function __construct() {
        parent::__construct(array(...my controllers here...));}}
?>

Unit Testing Models

You can write CodeIngniter unit tests for your models and run them via this interface. Open the model and click 'run unit tests'. It will load the APPDATA/models/tests/test_[modelname].php file and execute the tests. If this file does not exist, it gives you sample data to get started writing one and tells you the directory location to put it. (NOTE: For models in subdirectories, create your 'tests' directory in those subdirectories. Nifty huh...)

Testing Methods Run

This runs a generic test and searches for method-specific tests.

Default Unit Test

Here's what the suggested unit test is for my 'content_model.php' file, where I wrote one empty test for the method test_getUnderReviewStats.

<img src='imgs/unit_test_output.png' width='300px' />

How it works?

It sends an Ajax call to CIModelTester->model_test and returns the results in JSON to your page. Nifty.

Security Concerns

!GOOD HEAVENS YES! This is like handing the keys to your application to anyone that finds this controller. DON'T PUT INTO PRODUCTION CODE! To mitigate this risk, it does not function if you set your CodeIgniter project state to anything other than 'development' or 'testing' and you can turn it off by setting the second parameter to CIModelTester to be false.

Also, for unit tests, only runs in 'testing' environment.