aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/bshaffer/oauth2-server-php/test/lib/OAuth2/Storage/BaseTest.php
blob: e841d3ad2fb2ba3aa2f577c51d756c6686586c82 (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
<?php

namespace OAuth2\Storage;

use PHPUnit\Framework\TestCase;

abstract class BaseTest extends TestCase
{
    public function provideStorage()
    {
        $memory = Bootstrap::getInstance()->getMemoryStorage();
        $sqlite = Bootstrap::getInstance()->getSqlitePdo();
        $mysql = Bootstrap::getInstance()->getMysqlPdo();
        $postgres = Bootstrap::getInstance()->getPostgresPdo();
        $mongo = Bootstrap::getInstance()->getMongo();
        $mongoDb = Bootstrap::getInstance()->getMongoDB();
        $redis = Bootstrap::getInstance()->getRedisStorage();
        $cassandra = Bootstrap::getInstance()->getCassandraStorage();
        $dynamodb = Bootstrap::getInstance()->getDynamoDbStorage();
        $couchbase = Bootstrap::getInstance()->getCouchbase();

        /* hack until we can fix "default_scope" dependencies in other tests */
        $memory->defaultScope = 'defaultscope1 defaultscope2';

        return array(
            array($memory),
            array($sqlite),
            array($mysql),
            array($postgres),
            array($mongo),
            array($mongoDb),
            array($redis),
            array($cassandra),
            array($dynamodb),
            array($couchbase),
        );
    }
}