Version 26 (modified by Mariusz Felisiak, 9 years ago) ( diff )

--

Preparing an Oracle test setup

This document attempts to ease the task of running Django's (or your own app's) test suite against Oracle by providing a step by step setup guide to achieve that.

Using the Oracle Developer Day pre-installed VM

Oracle provides pre-built virtual machine images with Oracle Database 12c Release 1 Enterprise Edition (12.1.0.2.0) for developers in form of an OVA archive which can be imported by VirtualBox. The archive can be downloaded here (or alternately a different one can be chosen from this list) after signing up for an Oracle Developer Network account.

The server will probably be somewhat slower than if you install it directly on the host machine, but using a VM has a slightly simpler setup, there's a somewhat smaller chance you'll pollute your host system completely and in case something goes wrong, you can always just remove the virtual machine, import a fresh copy and start again.

  1. Download the OVA file from http://www.oracle.com/technetwork/database/enterprise-edition/databaseappdev-vm-161299.html and import it into VirtualBox (File -> Import Appliance). You'll have to accept an extensive license agreement.

  2. By default, the VM will be configured to have one NAT network interface and active port forwarding on port 1521. The database server itself starts automatically and listens on port 1521 (which is the default port for the Oracle listener), therefore you can connect to Oracle server using 127.0.0.1:1521. VM image uses cdb1 as Oracle SID and oracle as pluggable DB.

  3. The server comes with more than thirty user accounts created beforehand. Password for all accounts is oracle. Crucial users are sys and system because both of them have "sysdba" privilege (which means full control over DB and privileges to do everything). You can use them to create new test accounts in orcl container.

    As for other credentials on the virtual machine, if you want to login as a regular user, just use oracle/oracle, the root password is oracle as well. However, in order to run the test suite, you just need to boot the machine up, you don't need to start anything manually.

  4. Install instantclient on your host system (the one where you'll be running the test suite). On Debian or Ubuntu you can download the RPM packages ("Instant Client Package - Basic", "Instant Client Package - SDK" and "Instant Client Package - SQL*Plus" for 12.1.0.2.0) from http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html and install using alien:

    $ sudo alien -i oracle-instantclient12.1-basic-12.1.0.2.0-1.x86_64.rpm
    $ sudo alien -i oracle-instantclient12.1-devel-12.1.0.2.0-1.x86_64.rpm
    $ sudo alien -i oracle-instantclient12.1-sqlplus-12.1.0.2.0-1.x86_64.rpm
    

    After installing the client, you need to add links to Oracle shared libraries and sqlplus:

    $ sudo echo "/usr/lib/oracle/12.1/client64/lib/" > /etc/ld.so.conf.d/oracle.conf
    $ sudo ldconfig
    $ sudo ln -s /usr/bin/sqlplus64 /usr/bin/sqlplus
    
  5. Next install cx_Oracle in your testing virtualenv:

    $ pip install cx_Oracle
    
  6. Create test user:

    $ sqlplus sys/oracle@localhost/cdb1 as sysdba
    SQL> ALTER SESSION SET CONTAINER=orcl;
    SQL> CREATE USER djangotest IDENTIFIED BY djangotest;
    SQL> GRANT DBA TO djangotest;
    SQL> QUIT
    
  7. Fill DATABASES in settings file:

    DATABASES = {
        'default': {
            'ENGINE': 'django.db.backends.oracle',
            'NAME': '127.0.0.1:1521/orcl',
            'USER': 'djangotest',
            'PASSWORD': 'djangotest',
        },
    }
    
  8. Run tests:

    $ ./manage.py test
    Creating test database for alias 'default'...
    Creating test user...
    ...
    ----------------------------------------------------------------------
    Ran XXX tests in XXXs
    
    OK
    Destroying test database for alias 'default'...
    Destroying test user...
    Destroying test database tables...
    

Attachments (1)

Download all attachments as: .zip

Note: See TracWiki for help on using the wiki.
Back to Top