Skip to content

Commit 0852250

Browse files
committedJul 28, 2015
Initial commit
0 parents  commit 0852250

16 files changed

+354
-0
lines changed
 

‎.editorconfig

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
; This file is for unifying the coding style for different editors and IDEs.
2+
; More information at http://editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 4
9+
end_of_line = lf
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
[*.bat]
14+
end_of_line = crlf
15+
16+
[*.yml]
17+
indent_style = space
18+
indent_size = 2

‎.gitattributes

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Remove files for archives generated using `git archive`
2+
.editorconfig export-ignore
3+
.gitattributes export-ignore
4+
.gitignore export-ignore
5+
.semver export-ignore
6+
phpunit.xml.dist export-ignore
7+
.travis.yml export-ignore
8+
tests export-ignore

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/composer.lock
2+
/plugins
3+
/vendor

‎.semver

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
:major: 0
3+
:minor: 0
4+
:patch: 0
5+
:special: ''
6+
:metadata: ''

‎.travis.yml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
language: php
2+
3+
php:
4+
- 5.4
5+
- 5.5
6+
- 5.6
7+
8+
sudo: false
9+
10+
env:
11+
matrix:
12+
- DB=mysql db_dsn='mysql://travis@0.0.0.0/cakephp_test'
13+
- DB=pgsql db_dsn='postgres://postgres@127.0.0.1/cakephp_test'
14+
- DB=sqlite db_dsn='sqlite:///:memory:'
15+
16+
global:
17+
- DEFAULT=1
18+
19+
matrix:
20+
fast_finish: true
21+
22+
include:
23+
- php: 5.4
24+
env: PHPCS=1 DEFAULT=0
25+
26+
- php: 5.4
27+
env: COVERALLS=1 DEFAULT=0 DB=mysql db_dsn='mysql://travis@0.0.0.0/cakephp_test'
28+
29+
before_script:
30+
- composer self-update
31+
- composer install --prefer-dist --no-interaction
32+
33+
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test;'; fi"
34+
- sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'CREATE DATABASE cakephp_test;' -U postgres; fi"
35+
36+
- sh -c "if [ '$PHPCS' = '1' ]; then composer require cakephp/cakephp-codesniffer:dev-master; fi"
37+
38+
- sh -c "if [ '$COVERALLS' = '1' ]; then composer require --dev satooshi/php-coveralls:dev-master; fi"
39+
- sh -c "if [ '$COVERALLS' = '1' ]; then mkdir -p build/logs; fi"
40+
41+
script:
42+
- sh -c "if [ '$DEFAULT' = '1' ]; then phpunit --stderr; fi"
43+
- sh -c "if [ '$PHPCS' = '1' ]; then ./vendor/bin/phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests; fi"
44+
- sh -c "if [ '$COVERALLS' = '1' ]; then phpunit --stderr --coverage-clover build/logs/clover.xml; fi"
45+
- sh -c "if [ '$COVERALLS' = '1' ]; then php vendor/bin/coveralls -c .coveralls.yml -v; fi"
46+
47+
notifications:
48+
email: false

‎LICENSE

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2015 CakeDC
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
SOFTWARE.

‎README.md

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Enum
2+
3+
[![Build Status](https://img.shields.io/travis/CakeDC/Enum/master.svg?style=flat-square)](https://travis-ci.org/CakeDC/Enum)
4+
[![Coverage](https://img.shields.io/coveralls/CakeDC/Enum/master.svg?style=flat-square)](https://coveralls.io/r/CakeDC/Enum)
5+
[![Total Downloads](https://img.shields.io/packagist/dt/cakedc/enum.svg?style=flat-square)](https://packagist.org/packages/cakedc/enum)
6+
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](LICENSE)
7+
8+
{{@TODO description}}
9+
10+
## Install
11+
12+
Using [Composer][composer]:
13+
14+
```
15+
composer require cakedc/enum:dev-master
16+
```
17+
18+
You then need to load the plugin. You can use the shell command:
19+
20+
```
21+
bin/cake plugin load Enum
22+
```
23+
24+
or by manually adding statement shown below to `bootstrap.php`:
25+
26+
```php
27+
Plugin::load('Enum');
28+
```
29+
30+
## Usage
31+
32+
{{@TODO documentation}}
33+
34+
## Patches & Features
35+
36+
* Fork
37+
* Mod, fix
38+
* Test - this is important, so it's not unintentionally broken
39+
* Commit - do not mess with license, todo, version, etc. (if you do change any, bump them into commits of
40+
their own that I can ignore when I pull)
41+
* Pull request - bonus point for topic branches
42+
43+
To ensure your PRs are considered for upstream, you MUST follow the [CakePHP coding standards][standards].
44+
45+
## Bugs & Feedback
46+
47+
http://github.com/cakedc/enum/issues
48+
49+
## License
50+
51+
Copyright (c) 2015, [CakeDC][cakedc] and licensed under [The MIT License][mit].
52+
53+
[cakephp]:http://cakephp.org
54+
[composer]:http://getcomposer.org
55+
[mit]:http://www.opensource.org/licenses/mit-license.php
56+
[cakedc]:http://cakedc.com
57+
[standards]:http://book.cakephp.org/3.0/en/contributing/cakephp-coding-conventions.html

‎VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v0.0.0

‎composer.json

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"name": "cakedc/enum",
3+
"description": "{{@TODO description}}",
4+
"type": "cakephp-plugin",
5+
"keywords": [
6+
"cakephp",
7+
"cakedc",
8+
"enum"
9+
],
10+
"homepage": "https://github.com/cakedc/enum",
11+
"license": "MIT",
12+
"authors": [
13+
{
14+
"name": "Jad Bitar",
15+
"homepage": "http://jadb.io",
16+
"role": "Author"
17+
}
18+
],
19+
"support": {
20+
"issues": "https://github.com/cakedc/enum/issues",
21+
"source": "https://github.com/cakedc/enum"
22+
},
23+
"require": {
24+
},
25+
"require-dev": {
26+
"cakephp/cakephp": "~3.0",
27+
"cakephp/cakephp-codesniffer": "2.*",
28+
"phpunit/phpunit": "4.1.*"
29+
},
30+
"autoload": {
31+
"psr-4": {
32+
"Enum\\": "src"
33+
}
34+
},
35+
"autoload-dev": {
36+
"psr-4": {
37+
"Enum\\Test\\": "tests"
38+
}
39+
}
40+
}

‎config/Migrations/001_create_lookups.php

Whitespace-only changes.

‎phpunit.xml.dist

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit
3+
bootstrap="./tests/bootstrap.php"
4+
colors="true"
5+
stopOnFailure="false"
6+
>
7+
8+
<testsuites>
9+
<testsuite name="Enum Test Cases">
10+
<directory>./tests/</directory>
11+
</testsuite>
12+
</testsuites>
13+
14+
<!-- Setup a listener for fixtures -->
15+
<listeners>
16+
<listener
17+
class="\Cake\TestSuite\Fixture\FixtureInjector"
18+
file="./vendor/cakephp/cakephp/src/TestSuite/Fixture/FixtureInjector.php">
19+
<arguments>
20+
<object class="\Cake\TestSuite\Fixture\FixtureManager" />
21+
</arguments>
22+
</listener>
23+
</listeners>
24+
25+
<!-- Prevent coverage reports from looking in tests and vendors -->
26+
<filter>
27+
<blacklist>
28+
<directory suffix=".php">./vendor/</directory>
29+
<directory suffix=".ctp">./vendor/</directory>
30+
31+
<directory suffix=".php">./tests/</directory>
32+
<directory suffix=".ctp">./tests/</directory>
33+
</blacklist>
34+
</filter>
35+
</phpunit>

‎src/Model/Behavior/EnumBehavior.php

Whitespace-only changes.

‎tests/Fixture/ArticlesFixture.php

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
namespace Enum\Test\Fixture;
3+
4+
use Cake\TestSuite\Fixture\TestFixture;
5+
6+
class ArticlesFixture extends TestFixture
7+
{
8+
public $table = 'enum_articles';
9+
10+
public $fields = [
11+
'id' => ['type' => 'integer'],
12+
'title' => ['type' => 'string'],
13+
'body' => ['type' => 'text'],
14+
'priority_id' => ['type' => 'integer'],
15+
'status_id' => ['type' => 'integer'],
16+
'article_category_id' => ['type' => 'integer'],
17+
'_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]],
18+
'_options' => ['engine' => 'InnoDB', 'collation' => 'utf8_general_ci'],
19+
];
20+
21+
public $records = [
22+
[
23+
'title' => 'Dummy article',
24+
'body' => '',
25+
'priority_id' => 2,
26+
'status_id' => 4,
27+
'article_category_id' => 6
28+
],
29+
];
30+
}

‎tests/Fixture/LookupsFixture.php

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<?php
2+
namespace Enum\Test\Fixture;
3+
4+
use Cake\TestSuite\Fixture\TestFixture;
5+
6+
class LookupsFixture extends TestFixture
7+
{
8+
public $table = 'enum_lookups';
9+
10+
public $fields = [
11+
'id' => ['type' => 'integer'],
12+
'label' => ['type' => 'string'],
13+
'prefix' => ['type' => 'string'],
14+
'name' => ['type' => 'string'],
15+
];
16+
17+
public $records = [
18+
[
19+
'label' => 'Urgent',
20+
'prefix' => 'PRIORITY',
21+
'name' => 'URGENT',
22+
],
23+
[
24+
'label' => 'High',
25+
'prefix' => 'PRIORITY',
26+
'name' => 'HIGH',
27+
],
28+
[
29+
'label' => 'Normal',
30+
'prefix' => 'PRIORITY',
31+
'name' => 'NORMAL',
32+
],
33+
[
34+
'label' => 'Published',
35+
'prefix' => 'ARTICLE_STATUS',
36+
'name' => 'PUBLIC',
37+
],
38+
[
39+
'label' => 'Drafted',
40+
'prefix' => 'ARTICLE_STATUS',
41+
'name' => 'DRAFT',
42+
],
43+
[
44+
'label' => 'Archived',
45+
'prefix' => 'ARTICLE_STATUS',
46+
'name' => 'ARCHIVE',
47+
],
48+
[
49+
'label' => 'CakePHP',
50+
'prefix' => 'ARTICLE_CATEGORY',
51+
'name' => 'CAKEPHP',
52+
],
53+
[
54+
'label' => 'Open Source Software',
55+
'prefix' => 'ARTICLE_CATEGORY',
56+
'name' => 'OSS',
57+
],
58+
];
59+
}

‎tests/TestCase/Model/Behavior/EnumBehaviorTest.php

Whitespace-only changes.

‎tests/bootstrap.php

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
/**
3+
* Test suite bootstrap.
4+
*
5+
* This function is used to find the location of CakePHP whether CakePHP
6+
* has been installed as a dependency of the plugin, or the plugin is itself
7+
* installed as a dependency of an application.
8+
*/
9+
$findRoot = function ($root) {
10+
do {
11+
$lastRoot = $root;
12+
$root = dirname($root);
13+
if (is_dir($root . '/vendor/cakephp/cakephp')) {
14+
return $root;
15+
}
16+
} while ($root !== $lastRoot);
17+
18+
throw new Exception("Cannot find the root of the application, unable to run tests");
19+
};
20+
$root = $findRoot(__FILE__);
21+
unset($findRoot);
22+
23+
chdir($root);
24+
if (file_exists($root . '/config/bootstrap.php')) {
25+
require $root . '/config/bootstrap.php';
26+
}
27+
28+
require $root . '/vendor/cakephp/cakephp/tests/bootstrap.php';
29+
30+
\Cake\Core\Plugin::load('Enum', ['path' => dirname(dirname(__FILE__)) . DS]);

0 commit comments

Comments
 (0)